Browse Source

change BeginBlock validators to LastCommitInfo

pull/1711/head
Ethan Buchman 7 years ago
parent
commit
956e6d3435
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      docs/architecture/adr-009-ABCI-design.md

+ 7
- 2
docs/architecture/adr-009-ABCI-design.md View File

@ -2,7 +2,7 @@
## Changelog
07-06-2018: Minor updates based on discussion with Jae
07-06-2018: Some updates based on discussion with Jae
07-06-2018: Initial draft to match what was released in ABCI v0.11
## Context
@ -168,10 +168,15 @@ with a boolean for whether or not they voted:
message RequestBeginBlock {
bytes hash
Header header
repeated SigningValidator validators
LastCommitInfo last_commit_info
repeated Evidence byzantine_validators
}
message LastCommitInfo {
int32 CommitRound
repeated SigningValidator validators
}
message SigningValidator {
Validator validator
bool signed_last_block


Loading…
Cancel
Save