From 5935870fb74c4a23caf17f44224d44a9fc9088ba Mon Sep 17 00:00:00 2001 From: William Banfield Date: Thu, 14 Oct 2021 08:03:09 -0400 Subject: [PATCH] update prevote nil debug line --- internal/consensus/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/consensus/state.go b/internal/consensus/state.go index 037b00bb7..5df9cba5c 100644 --- a/internal/consensus/state.go +++ b/internal/consensus/state.go @@ -1370,7 +1370,7 @@ func (cs *State) defaultDoPrevote(height int64, round int32) { } } - logger.Debug("prevote step: ProposalBlock is valid but did not receive a majority in a round; prevoting nil") + logger.Debug("prevote step: ProposalBlock is valid but was not our locked block or did not receive a more recent majority; prevoting nil") cs.signAddVote(tmproto.PrevoteType, nil, types.PartSetHeader{}) }