@@ -23,16 +23,14 @@ message LegacyABCIResponses {
2323
2424// ResponseBeginBlock is kept for backwards compatibility for versions prior to v0.38
2525message ResponseBeginBlock {
26- repeated tendermint.abci.Event events = 1
27- [(gogoproto.nullable ) = false , (gogoproto.jsontag ) = "events,omitempty" ];
26+ repeated tendermint.abci.Event events = 1 [(gogoproto.nullable ) = false , (gogoproto.jsontag ) = "events,omitempty" ];
2827}
2928
3029// ResponseEndBlock is kept for backwards compatibility for versions prior to v0.38
3130message ResponseEndBlock {
3231 repeated tendermint.abci.ValidatorUpdate validator_updates = 1 [(gogoproto.nullable ) = false ];
3332 tendermint.types.ConsensusParams consensus_param_updates = 2 ;
34- repeated tendermint.abci.Event events = 3
35- [(gogoproto.nullable ) = false , (gogoproto.jsontag ) = "events,omitempty" ];
33+ repeated tendermint.abci.Event events = 3 [(gogoproto.nullable ) = false , (gogoproto.jsontag ) = "events,omitempty" ];
3634}
3735
3836// ValidatorsInfo represents the latest validator set, or the last height it changed
@@ -66,11 +64,9 @@ message State {
6664 int64 initial_height = 14 ;
6765
6866 // LastBlockHeight=0 at genesis (ie. block(H=0) does not exist)
69- int64 last_block_height = 3 ;
70- tendermint.types.BlockID last_block_id = 4
71- [(gogoproto.nullable ) = false , (gogoproto.customname ) = "LastBlockID" ];
72- google.protobuf.Timestamp last_block_time = 5
73- [(gogoproto.nullable ) = false , (gogoproto.stdtime ) = true ];
67+ int64 last_block_height = 3 ;
68+ tendermint.types.BlockID last_block_id = 4 [(gogoproto.nullable ) = false , (gogoproto.customname ) = "LastBlockID" ];
69+ google.protobuf.Timestamp last_block_time = 5 [(gogoproto.nullable ) = false , (gogoproto.stdtime ) = true ];
7470
7571 // LastValidators is used to validate block.LastCommit.
7672 // Validators are persisted to the database separately every time they change,
0 commit comments