From f25a8ada7c9ae692bb8f9b92cee558ac65137566 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 15 Dec 2021 14:15:06 -0500 Subject: [PATCH] comment fixup, prevote -> precommit --- 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 79ae63b3b..b5755a6f6 100644 --- a/internal/consensus/state.go +++ b/internal/consensus/state.go @@ -1484,7 +1484,7 @@ func (cs *State) enterPrecommit(height int64, round int32) { // If the proposal time does not match the block time, precommit nil. if !cs.Proposal.Timestamp.Equal(cs.ProposalBlock.Header.Time) { - logger.Debug("proposal timestamp not equal, prevoting nil") + logger.Debug("proposal timestamp not equal, precommitting nil") cs.signAddVote(tmproto.PrecommitType, nil, types.PartSetHeader{}) return }