From 4be630175b1ee828de02dba4c872ee0ad0d90203 Mon Sep 17 00:00:00 2001 From: Anca Zamfir Date: Tue, 11 Jan 2022 10:09:41 +0100 Subject: [PATCH] Fix comment --- 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 9dd8d660c..a157907f8 100644 --- a/internal/consensus/state.go +++ b/internal/consensus/state.go @@ -1325,7 +1325,7 @@ func (cs *State) proposalIsTimely() bool { func (cs *State) defaultDoPrevote(height int64, round int32) { logger := cs.Logger.With("height", height, "round", round) - // We did not receive a proposal within this round. (and thus executing this from a timeout) + // Check that a proposed block was not received within this round (and thus executing this from a timeout). if cs.ProposalBlock == nil { logger.Debug("prevote step: ProposalBlock is nil; prevoting nil") cs.signAddVote(tmproto.PrevoteType, nil, types.PartSetHeader{})