diff options
author | Determinant <[email protected]> | 2018-09-10 16:06:27 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-09-10 16:06:27 -0400 |
commit | 6261c95184b86c43755071b351e6928f89e2343c (patch) | |
tree | 7a33a5d8ad3b252f629d52c5183eab90efb3438a /src/consensus.cpp | |
parent | 05f2c56b909a2cd05a200ad663001696e4a23261 (diff) |
finish simple multithreaded verifier
Diffstat (limited to 'src/consensus.cpp')
-rw-r--r-- | src/consensus.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/consensus.cpp b/src/consensus.cpp index d40f488..c80de59 100644 --- a/src/consensus.cpp +++ b/src/consensus.cpp @@ -196,11 +196,11 @@ void HotStuffCore::on_receive_vote(const Vote &vote) { block_t blk = get_delivered_blk(vote.blk_hash); if (vote.cert == nullptr) return; /* otherwise the vote is positive */ - if (!vote.verify()) - { - LOG_WARN("invalid vote from %d", vote.voter); - return; - } + //if (!vote.verify()) + //{ + // LOG_WARN("invalid vote from %d", vote.voter); + // return; + //} if (!blk->voted.insert(vote.voter).second) { LOG_WARN("duplicate vote from %d", vote.voter); |