diff options
author | Determinant <[email protected]> | 2018-07-19 17:51:15 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-19 17:51:15 -0400 |
commit | 3c355d7f9e7b491b9fc5af4516286ab4100238c6 (patch) | |
tree | 7806e385c3c35be4deb82d4a799fc504ed6e90b3 /src/hotstuff_client.cpp | |
parent | 3c1cac7136b6fbc378c5bc86a50537794f2b6437 (diff) |
...
Diffstat (limited to 'src/hotstuff_client.cpp')
-rw-r--r-- | src/hotstuff_client.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/hotstuff_client.cpp b/src/hotstuff_client.cpp index bee60c3..3931a0c 100644 --- a/src/hotstuff_client.cpp +++ b/src/hotstuff_client.cpp @@ -91,11 +91,7 @@ void on_receive(const MsgClient &msg, MsgNetwork<MsgClient>::conn_t) { it->second.rid = proposer; return; } - HOTSTUFF_LOG_INFO( - "got response for %.10s: <decision=%d, blk=%.10s>", - get_hex(cmd_hash).c_str(), - fin.decision, - get_hex(fin.blk_hash).c_str()); + HOTSTUFF_LOG_INFO("got %s", std::string(fin).c_str()); if (it == waiting.end()) return; waiting.erase(it); try_send(); |