Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Exclude the IDE folders from the VCS
.idea
2 changes: 1 addition & 1 deletion consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ func (p *Pbft) runRoundChangeState(ctx context.Context) {
num := p.state.AddRoundMessage(msg)

if num == p.state.NumValid() {
// start a new round inmediatly
// start a new round immediately
p.state.view.Round = msg.View.Round
p.setState(AcceptState)
} else if num == p.state.MaxFaultyNodes()+1 {
Expand Down
Loading