diff options
author | Determinant <[email protected]> | 2019-08-16 15:47:44 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-08-16 15:47:44 -0400 |
commit | 1e2bceedc30e41964345acc8f0bdd734e766e1f6 (patch) | |
tree | c3da31b7d64f164fd9576bbb415cdc38fc63777b /src | |
parent | a442616edf97dc65f6e768d249eb318fa317c747 (diff) |
remove dangling include
Diffstat (limited to 'src')
-rw-r--r-- | src/consensus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consensus.cpp b/src/consensus.cpp index d9c1f64..7a577c5 100644 --- a/src/consensus.cpp +++ b/src/consensus.cpp @@ -229,7 +229,7 @@ void HotStuffCore::on_receive_vote(const Vote &vote) { if (qsize >= config.nmajority) return; if (!blk->voted.insert(vote.voter).second) { - LOG_WARN("duplicate vote from %d", vote.voter); + LOG_WARN("duplicate vote for %s from %d", get_hex10(vote.blk_hash).c_str(), vote.voter); return; } auto &qc = blk->self_qc; |