diff options
author | Determinant <[email protected]> | 2018-07-17 20:02:52 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-17 20:02:52 -0400 |
commit | e08bf4e6a40cf82822c50b1433a573d0d8800f80 (patch) | |
tree | 6b3ea8cabf94719f96dbacd176029a207a3920a6 /src/client.cpp | |
parent | 02e347dae1a01172dbcc2efe054014c015d96507 (diff) |
add PaceMakerDummyFixed
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.cpp b/src/client.cpp index 482c23d..486594a 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -11,9 +11,9 @@ void MsgClient::gen_reqcmd(const Command &cmd) { set_payload(std::move(s)); } -void MsgClient::parse_reqcmd(CommandDummy &cmd) const { +void MsgClient::parse_reqcmd(command_t &cmd, HotStuffCore *hsc) const { DataStream s(get_payload()); - s >> cmd; + cmd = hsc->parse_cmd(s); } void MsgClient::gen_respcmd(const uint256_t &cmd_hash, const Finality &fin) { |