diff --git a/docs/architecture/adr-071-proposer-based-timestamps.md b/docs/architecture/adr-071-proposer-based-timestamps.md index 106a3cc63..0911bfec6 100644 --- a/docs/architecture/adr-071-proposer-based-timestamps.md +++ b/docs/architecture/adr-071-proposer-based-timestamps.md @@ -190,15 +190,13 @@ type Vote struct { Type tmproto.SignedMsgType `json:"type"` Height int64 `json:"height"` Round int32 `json:"round"` // proposal/vote round - ForBlock bool `json:"for_block"` // false if vote is nil. + BlockID BlockID `json:"block_id"` // zero if vote is nil. ValidatorIndex int32 `json:"validator_index"` + ValidatorAddress Address `json:"validator_address"` Signature []byte `json:"signature"` } ``` -`BlockID` is also dropped as it is also stored by all validators. -`ValidatorIndex` is all that is needed to determine `ValidatorAddress` so it is dropped as well. - ### New consensus parameters The proposer-based timestamp specification includes multiple new parameters that must be the same among all validators.