From 4f61b97bbe69a08c3406e3b04148ef8fa866641d Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 16 Aug 2018 10:56:43 -0400 Subject: [PATCH] update dep for proto. fix types/proto3/block.proto --- types/proto3/block.proto | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/types/proto3/block.proto b/types/proto3/block.proto index cefd180da..835d6b74b 100644 --- a/types/proto3/block.proto +++ b/types/proto3/block.proto @@ -30,13 +30,14 @@ message Header { // hashes from the app output from the prev block bytes ValidatorsHash = 9; // validators for the current block - bytes ConsensusHash = 10; // consensus params for current block - bytes AppHash = 11; // state after txs from the previous block - bytes LastResultsHash = 12; // root hash of all results from the txs from the previous block + bytes NextValidatorsHash = 10; // validators for the next block + bytes ConsensusHash = 11; // consensus params for current block + bytes AppHash = 12; // state after txs from the previous block + bytes LastResultsHash = 13; // root hash of all results from the txs from the previous block // consensus info - bytes EvidenceHash = 13; // evidence included in the block - bytes ProposerAddress = 14; // original proposer of the block + bytes EvidenceHash = 14; // evidence included in the block + bytes ProposerAddress = 15; // original proposer of the block } // Timestamp wraps how amino encodes time. Note that this is different from the protobuf well-known type