From 69c9928f0ccb99f12346af378d0d30b516d62bed Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 1 Feb 2022 21:24:48 -0500 Subject: [PATCH] fix typo --- types/proposal.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/proposal.go b/types/proposal.go index c373a661b..a11724b9e 100644 --- a/types/proposal.go +++ b/types/proposal.go @@ -93,7 +93,7 @@ func (p *Proposal) ValidateBasic() error { func (p *Proposal) IsTimely(recvTime time.Time, sp SynchronyParams, round int32) bool { // The message delay values are scaled as rounds progress. // Every 10 rounds, the message delay is doubled to allow consensus to - // proceed in the case that the choosen value was too small for the given network conditions. + // proceed in the case that the chosen value was too small for the given network conditions. // For more information and discussion on this mechanism, see the relevant github issue: // https://github.com/tendermint/spec/issues/371 roundModifier := time.Duration(math.Exp2(float64(round / 10)))