Skip to content

Commit

Permalink
Merge branch 'release/0.4.0' into fix/adversary-can-crash-other-nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
loongy committed Aug 10, 2020
2 parents 3f93bd4 + bfd98ce commit abc52cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ func (p *Process) tryPrevoteUponSufficientPrevotes() {
if !ok {
return
}
if propose.ValidRound == InvalidRound || propose.ValidRound >= p.CurrentRound {
if propose.ValidRound <= InvalidRound || propose.ValidRound >= p.CurrentRound {
return
}

Expand Down

0 comments on commit abc52cd

Please sign in to comment.