From 792f250a6d9f617ce272cf8ef594e3ef1a984e57 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 16 Nov 2021 10:00:59 -0500 Subject: [PATCH] minor language fix --- internal/consensus/state.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/consensus/state.go b/internal/consensus/state.go index 5ec2c0370..32b6357b3 100644 --- a/internal/consensus/state.go +++ b/internal/consensus/state.go @@ -2427,8 +2427,8 @@ func proposerWaitTime(lt tmtime.Source, h types.Header) time.Duration { // proposalStepWaitingTime determines how long a validator should wait for a block // to be sent from a proposer. This duration is determined as a result of the -// previous block's time as well as by the Accuracy and MsgDelay timestamp parameter. -// The validator and the proposer's clock should differ from eachother by at most +// previous block's time as well as by the Accuracy and MsgDelay timestamp parameters. +// The validator's and the proposer's clocks should differ from eachother by at most // 2 * Accuracy and the proposal should take at most MsgDelay to arrive at the validator. // The validator must therefore wait at least 2 * Accuracy + MsgDelay for the proposal // to arrive.