Skip to content
Merged
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: 1 addition & 1 deletion internal/bft/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func (v *View) processMsg(sender uint64, m *protos.Message) {
v.Logger.Debugf("%d got message %s from %d with seq %d", v.SelfID, MsgToString(m), sender, msgProposalSeq)
// This message is either for this proposal or the next one (we might be behind the rest)
if msgProposalSeq != v.ProposalSequence && msgProposalSeq != v.ProposalSequence+1 {
v.Logger.Warnf("%d got message from %d with sequence %d but our sequence is %d", v.SelfID, sender, msgProposalSeq, v.ProposalSequence)
v.Logger.Infof("%d got message from %d with sequence %d but our sequence is %d", v.SelfID, sender, msgProposalSeq, v.ProposalSequence)
v.discoverIfSyncNeeded(sender, m)
return
}
Expand Down