update abci spec

This commit is contained in:
Ethan Buchman
2018-08-16 10:49:14 -04:00
parent c919643c3e
commit 1111c1848d
2 changed files with 36 additions and 22 deletions

View File

@@ -52,14 +52,13 @@ objects in the `ResponseBeginBlock`:
```
message Validator {
bytes address = 1;
PubKey pub_key = 2;
int64 power = 3;
PubKey pub_key
int64 power
}
message PubKey {
string type = 1;
bytes data = 2;
string type
bytes data
}
```
@@ -99,9 +98,6 @@ If the list is not empty, Tendermint will adopt it for the validator set.
This way the application can determine the initial validator set for the
blockchain.
Note that if addressses are included in the returned validators, they must match
the address of the public key.
ResponseInitChain also includes ConsensusParams, but these are presently
ignored.