From 0f4844af2e429f10783c87e457c09fc3bac0e2cf Mon Sep 17 00:00:00 2001 From: William Banfield <4561443+williambanfield@users.noreply.github.com> Date: Thu, 14 Oct 2021 12:10:47 -0400 Subject: [PATCH] Update internal/consensus/state.go Co-authored-by: Dev Ojha --- 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 a5d2cdce3..87036509c 100644 --- a/internal/consensus/state.go +++ b/internal/consensus/state.go @@ -1297,7 +1297,7 @@ func (cs *State) enterPrevote(height int64, round int32) { 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. + // We did not receive a proposal within this round. (and thus executing this from a timeout) if cs.ProposalBlock == nil { logger.Debug("prevote step: ProposalBlock is nil") cs.signAddVote(tmproto.PrevoteType, nil, types.PartSetHeader{})