From 9c2bb36669eaf96e1b02b52d4c70d7ccae9e0e86 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Mon, 25 Oct 2021 13:19:02 +0200 Subject: [PATCH] sentence fix --- docs/architecture/adr-071-proposer-based-timestamps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/adr-071-proposer-based-timestamps.md b/docs/architecture/adr-071-proposer-based-timestamps.md index c4290bbce..b4a02c104 100644 --- a/docs/architecture/adr-071-proposer-based-timestamps.md +++ b/docs/architecture/adr-071-proposer-based-timestamps.md @@ -195,7 +195,7 @@ A goal of adding proposer-based timestamps is to enforce some degree of clock sy Validator clocks will not be perfectly in sync. Therefore, the proposer’s current known Unix time may be less than the previous block's `Header.Time`. -If the proposer’s current known Unix time is less than previous block's `Header.Time`, the proposer will sleep until its known Unix time exceeds it. +If the proposer’s current known Unix time is less than the previous block's `Header.Time`, the proposer will sleep until its known Unix time exceeds it. This change will require amending the [defaultDecideProposal](https://github.com/tendermint/tendermint/blob/822893615564cb20b002dd5cf3b42b8d364cb7d9/internal/consensus/state.go#L1180) method. This method should now block until the proposer’s time is greater than the previous block's `Header.Time`.