From 66984ce432b09f7c3005ce789dbc1bd6116de08c Mon Sep 17 00:00:00 2001 From: William Banfield Date: Mon, 11 Apr 2022 11:57:30 -0400 Subject: [PATCH] update intermediate --- .../tendermint/abci/types.proto.intermediate | 33 +++++++++---------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/proto/tendermint/abci/types.proto.intermediate b/proto/tendermint/abci/types.proto.intermediate index bbc78c28b..9404eb1f4 100644 --- a/proto/tendermint/abci/types.proto.intermediate +++ b/proto/tendermint/abci/types.proto.intermediate @@ -131,24 +131,22 @@ message RequestPrepareProposal { repeated bytes txs = 2; ExtendedCommitInfo local_last_commit = 3 [(gogoproto.nullable) = false]; repeated Evidence byzantine_validators = 4 [(gogoproto.nullable) = false]; - bytes hash = 5; - int64 height = 6; - google.protobuf.Timestamp time = 7 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; - // address of the public key of the node receiving this PrepareProposal request. - bytes proposer_address = 8; - bytes next_validators_hash = 9; + int64 height = 5; + google.protobuf.Timestamp time = 6 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; + bytes next_validators_hash = 7; } message RequestProcessProposal { - repeated bytes txs = 1; - CommitInfo proposed_last_commit = 2 [(gogoproto.nullable) = false]; - repeated Evidence byzantine_validators = 3 [(gogoproto.nullable) = false]; + repeated bytes txs = 1; + CommitInfo proposed_last_commit = 2 [(gogoproto.nullable) = false]; + repeated Evidence byzantine_validators = 3 [(gogoproto.nullable) = false]; + // hash is the merkle root hash of the fields of the proposed block. bytes hash = 4; int64 height = 5; google.protobuf.Timestamp time = 6 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; + bytes next_validators_hash = 7; // address of the public key of the original proposer of the block. - bytes proposer_address = 7; - bytes next_validators_hash = 8; + bytes proposer_address = 8; } // Extends a vote with application-side injection @@ -162,15 +160,16 @@ message RequestVerifyVoteExtension { } message RequestFinalizeBlock { - repeated bytes txs = 1; - CommitInfo decided_last_commit = 2 [(gogoproto.nullable) = false]; - repeated Evidence byzantine_validators = 3 [(gogoproto.nullable) = false]; + repeated bytes txs = 1; + CommitInfo decided_last_commit = 2 [(gogoproto.nullable) = false]; + repeated Evidence byzantine_validators = 3 [(gogoproto.nullable) = false]; + // hash is the merkle root hash of the fields of the proposed block. bytes hash = 4; int64 height = 5; google.protobuf.Timestamp time = 6 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; - // address of the public key of the original proposer of the block. - bytes proposer_address = 7; - bytes next_validators_hash = 8; + bytes next_validators_hash = 7; + // proposer_address is the address of the public key of the original proposer of the block. + bytes proposer_address = 8; } //----------------------------------------