We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13bd2a commit ef53833Copy full SHA for ef53833
core/src/consensus/tendermint/worker.rs
@@ -954,6 +954,7 @@ impl Worker {
954
if !self.votes.is_old_or_known(&message) {
955
if let Err(double_vote) = self.votes.collect(message) {
956
cerror!(ENGINE, "Double vote found on_commit_message: {:?}", double_vote);
957
+ self.report_double_vote(&double_vote);
958
}
959
960
@@ -2163,6 +2164,7 @@ impl Worker {
2163
2164
if !self.votes.is_old_or_known(&vote) {
2165
if let Err(double_vote) = self.votes.collect(vote) {
2166
2167
2168
2169
2170
0 commit comments