sentence fix

This commit is contained in:
William Banfield
2021-10-25 13:19:02 +02:00
parent 5e23478057
commit 9c2bb36669

View File

@@ -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 proposers current known Unix time may be less than the previous block's `Header.Time`.
If the proposers 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 proposers 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 proposers time is greater than the previous block's `Header.Time`.