diff --git a/abci/example/kvstore/persistent_kvstore.go b/abci/example/kvstore/persistent_kvstore.go index be46665c8..0f89f979d 100644 --- a/abci/example/kvstore/persistent_kvstore.go +++ b/abci/example/kvstore/persistent_kvstore.go @@ -193,10 +193,10 @@ func (app *PersistentKVStoreApplication) ProcessProposal( req types.RequestProcessProposal) types.ResponseProcessProposal { for _, tx := range req.Txs { if len(tx) == 0 { - return types.ResponseProcessProposal{Result: types.ResponseProcessProposal_REJECT} + return types.ResponseProcessProposal{Accept: false} } } - return types.ResponseProcessProposal{Result: types.ResponseProcessProposal_ACCEPT} + return types.ResponseProcessProposal{Accept: true} } //--------------------------------------------- diff --git a/abci/types/result.go b/abci/types/result.go index fb76e01d0..afa2aced9 100644 --- a/abci/types/result.go +++ b/abci/types/result.go @@ -60,7 +60,7 @@ func (r ResponseVerifyVoteExtension) IsErr() bool { // IsOK returns true if Code is OK func (r ResponseProcessProposal) IsOK() bool { - return r.Result == ResponseProcessProposal_ACCEPT + return r.Accept } //--------------------------------------------------------------------------- diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index 25f814ba6..e17237028 100644 --- a/abci/types/types.pb.go +++ b/abci/types/types.pb.go @@ -11,7 +11,7 @@ import ( _ "github.com/gogo/protobuf/types" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" crypto "github.com/tendermint/tendermint/proto/tendermint/crypto" - types1 "github.com/tendermint/tendermint/proto/tendermint/types" + types "github.com/tendermint/tendermint/proto/tendermint/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -120,7 +120,7 @@ func (x ResponseOfferSnapshot_Result) String() string { } func (ResponseOfferSnapshot_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{32, 0} + return fileDescriptor_252557cfdd89a31a, []int{33, 0} } type ResponseApplySnapshotChunk_Result int32 @@ -157,7 +157,7 @@ func (x ResponseApplySnapshotChunk_Result) String() string { } func (ResponseApplySnapshotChunk_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{34, 0} + return fileDescriptor_252557cfdd89a31a, []int{35, 0} } type ResponseVerifyVoteExtension_Result int32 @@ -188,34 +188,6 @@ func (x ResponseVerifyVoteExtension_Result) String() string { } func (ResponseVerifyVoteExtension_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{37, 0} -} - -type ResponseProcessProposal_Result int32 - -const ( - ResponseProcessProposal_UNKNOWN ResponseProcessProposal_Result = 0 - ResponseProcessProposal_ACCEPT ResponseProcessProposal_Result = 1 - ResponseProcessProposal_REJECT ResponseProcessProposal_Result = 2 -) - -var ResponseProcessProposal_Result_name = map[int32]string{ - 0: "UNKNOWN", - 1: "ACCEPT", - 2: "REJECT", -} - -var ResponseProcessProposal_Result_value = map[string]int32{ - "UNKNOWN": 0, - "ACCEPT": 1, - "REJECT": 2, -} - -func (x ResponseProcessProposal_Result) String() string { - return proto.EnumName(ResponseProcessProposal_Result_name, int32(x)) -} - -func (ResponseProcessProposal_Result) EnumDescriptor() ([]byte, []int) { return fileDescriptor_252557cfdd89a31a, []int{38, 0} } @@ -239,6 +211,7 @@ type Request struct { // *Request_ProcessProposal // *Request_ExtendVote // *Request_VerifyVoteExtension + // *Request_FinalizeBlock Value isRequest_Value `protobuf_oneof:"value"` } @@ -335,6 +308,9 @@ type Request_ExtendVote struct { type Request_VerifyVoteExtension struct { VerifyVoteExtension *RequestVerifyVoteExtension `protobuf:"bytes,18,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` } +type Request_FinalizeBlock struct { + FinalizeBlock *RequestFinalizeBlock `protobuf:"bytes,19,opt,name=finalize_block,json=finalizeBlock,proto3,oneof" json:"finalize_block,omitempty"` +} func (*Request_Echo) isRequest_Value() {} func (*Request_Flush) isRequest_Value() {} @@ -354,6 +330,7 @@ func (*Request_PrepareProposal) isRequest_Value() {} func (*Request_ProcessProposal) isRequest_Value() {} func (*Request_ExtendVote) isRequest_Value() {} func (*Request_VerifyVoteExtension) isRequest_Value() {} +func (*Request_FinalizeBlock) isRequest_Value() {} func (m *Request) GetValue() isRequest_Value { if m != nil { @@ -488,6 +465,13 @@ func (m *Request) GetVerifyVoteExtension() *RequestVerifyVoteExtension { return nil } +func (m *Request) GetFinalizeBlock() *RequestFinalizeBlock { + if x, ok := m.GetValue().(*Request_FinalizeBlock); ok { + return x.FinalizeBlock + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Request) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -509,6 +493,7 @@ func (*Request) XXX_OneofWrappers() []interface{} { (*Request_ProcessProposal)(nil), (*Request_ExtendVote)(nil), (*Request_VerifyVoteExtension)(nil), + (*Request_FinalizeBlock)(nil), } } @@ -556,6 +541,74 @@ func (m *RequestEcho) GetMessage() string { return "" } +type RequestBeginBlock struct { + Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` + Header types.Header `protobuf:"bytes,2,opt,name=header,proto3" json:"header"` + LastCommitInfo LastCommitInfo `protobuf:"bytes,3,opt,name=last_commit_info,json=lastCommitInfo,proto3" json:"last_commit_info"` + ByzantineValidators []Evidence `protobuf:"bytes,4,rep,name=byzantine_validators,json=byzantineValidators,proto3" json:"byzantine_validators"` +} + +func (m *RequestBeginBlock) Reset() { *m = RequestBeginBlock{} } +func (m *RequestBeginBlock) String() string { return proto.CompactTextString(m) } +func (*RequestBeginBlock) ProtoMessage() {} +func (*RequestBeginBlock) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{2} +} +func (m *RequestBeginBlock) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestBeginBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestBeginBlock.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RequestBeginBlock) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestBeginBlock.Merge(m, src) +} +func (m *RequestBeginBlock) XXX_Size() int { + return m.Size() +} +func (m *RequestBeginBlock) XXX_DiscardUnknown() { + xxx_messageInfo_RequestBeginBlock.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestBeginBlock proto.InternalMessageInfo + +func (m *RequestBeginBlock) GetHash() []byte { + if m != nil { + return m.Hash + } + return nil +} + +func (m *RequestBeginBlock) GetHeader() types.Header { + if m != nil { + return m.Header + } + return types.Header{} +} + +func (m *RequestBeginBlock) GetLastCommitInfo() LastCommitInfo { + if m != nil { + return m.LastCommitInfo + } + return LastCommitInfo{} +} + +func (m *RequestBeginBlock) GetByzantineValidators() []Evidence { + if m != nil { + return m.ByzantineValidators + } + return nil +} + type RequestFlush struct { } @@ -563,7 +616,7 @@ func (m *RequestFlush) Reset() { *m = RequestFlush{} } func (m *RequestFlush) String() string { return proto.CompactTextString(m) } func (*RequestFlush) ProtoMessage() {} func (*RequestFlush) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{2} + return fileDescriptor_252557cfdd89a31a, []int{3} } func (m *RequestFlush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -603,7 +656,7 @@ func (m *RequestInfo) Reset() { *m = RequestInfo{} } func (m *RequestInfo) String() string { return proto.CompactTextString(m) } func (*RequestInfo) ProtoMessage() {} func (*RequestInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{3} + return fileDescriptor_252557cfdd89a31a, []int{4} } func (m *RequestInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -661,19 +714,19 @@ func (m *RequestInfo) GetAbciVersion() string { } type RequestInitChain struct { - Time time.Time `protobuf:"bytes,1,opt,name=time,proto3,stdtime" json:"time"` - ChainId string `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` - ConsensusParams *types1.ConsensusParams `protobuf:"bytes,3,opt,name=consensus_params,json=consensusParams,proto3" json:"consensus_params,omitempty"` - Validators []ValidatorUpdate `protobuf:"bytes,4,rep,name=validators,proto3" json:"validators"` - AppStateBytes []byte `protobuf:"bytes,5,opt,name=app_state_bytes,json=appStateBytes,proto3" json:"app_state_bytes,omitempty"` - InitialHeight int64 `protobuf:"varint,6,opt,name=initial_height,json=initialHeight,proto3" json:"initial_height,omitempty"` + Time time.Time `protobuf:"bytes,1,opt,name=time,proto3,stdtime" json:"time"` + ChainId string `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` + ConsensusParams *types.ConsensusParams `protobuf:"bytes,3,opt,name=consensus_params,json=consensusParams,proto3" json:"consensus_params,omitempty"` + Validators []ValidatorUpdate `protobuf:"bytes,4,rep,name=validators,proto3" json:"validators"` + AppStateBytes []byte `protobuf:"bytes,5,opt,name=app_state_bytes,json=appStateBytes,proto3" json:"app_state_bytes,omitempty"` + InitialHeight int64 `protobuf:"varint,6,opt,name=initial_height,json=initialHeight,proto3" json:"initial_height,omitempty"` } func (m *RequestInitChain) Reset() { *m = RequestInitChain{} } func (m *RequestInitChain) String() string { return proto.CompactTextString(m) } func (*RequestInitChain) ProtoMessage() {} func (*RequestInitChain) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{4} + return fileDescriptor_252557cfdd89a31a, []int{5} } func (m *RequestInitChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -716,7 +769,7 @@ func (m *RequestInitChain) GetChainId() string { return "" } -func (m *RequestInitChain) GetConsensusParams() *types1.ConsensusParams { +func (m *RequestInitChain) GetConsensusParams() *types.ConsensusParams { if m != nil { return m.ConsensusParams } @@ -755,7 +808,7 @@ func (m *RequestQuery) Reset() { *m = RequestQuery{} } func (m *RequestQuery) String() string { return proto.CompactTextString(m) } func (*RequestQuery) ProtoMessage() {} func (*RequestQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{5} + return fileDescriptor_252557cfdd89a31a, []int{6} } func (m *RequestQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -812,126 +865,6 @@ func (m *RequestQuery) GetProve() bool { return false } -type RequestBeginBlock struct { - Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` - Header types1.Header `protobuf:"bytes,2,opt,name=header,proto3" json:"header"` - LastCommitInfo LastCommitInfo `protobuf:"bytes,3,opt,name=last_commit_info,json=lastCommitInfo,proto3" json:"last_commit_info"` - ByzantineValidators []Evidence `protobuf:"bytes,4,rep,name=byzantine_validators,json=byzantineValidators,proto3" json:"byzantine_validators"` -} - -func (m *RequestBeginBlock) Reset() { *m = RequestBeginBlock{} } -func (m *RequestBeginBlock) String() string { return proto.CompactTextString(m) } -func (*RequestBeginBlock) ProtoMessage() {} -func (*RequestBeginBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{6} -} -func (m *RequestBeginBlock) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *RequestBeginBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_RequestBeginBlock.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *RequestBeginBlock) XXX_Merge(src proto.Message) { - xxx_messageInfo_RequestBeginBlock.Merge(m, src) -} -func (m *RequestBeginBlock) XXX_Size() int { - return m.Size() -} -func (m *RequestBeginBlock) XXX_DiscardUnknown() { - xxx_messageInfo_RequestBeginBlock.DiscardUnknown(m) -} - -var xxx_messageInfo_RequestBeginBlock proto.InternalMessageInfo - -func (m *RequestBeginBlock) GetHash() []byte { - if m != nil { - return m.Hash - } - return nil -} - -func (m *RequestBeginBlock) GetHeader() types1.Header { - if m != nil { - return m.Header - } - return types1.Header{} -} - -func (m *RequestBeginBlock) GetLastCommitInfo() LastCommitInfo { - if m != nil { - return m.LastCommitInfo - } - return LastCommitInfo{} -} - -func (m *RequestBeginBlock) GetByzantineValidators() []Evidence { - if m != nil { - return m.ByzantineValidators - } - return nil -} - -type RequestCheckTx struct { - Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"` - Type CheckTxType `protobuf:"varint,2,opt,name=type,proto3,enum=tendermint.abci.CheckTxType" json:"type,omitempty"` -} - -func (m *RequestCheckTx) Reset() { *m = RequestCheckTx{} } -func (m *RequestCheckTx) String() string { return proto.CompactTextString(m) } -func (*RequestCheckTx) ProtoMessage() {} -func (*RequestCheckTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{7} -} -func (m *RequestCheckTx) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *RequestCheckTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_RequestCheckTx.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *RequestCheckTx) XXX_Merge(src proto.Message) { - xxx_messageInfo_RequestCheckTx.Merge(m, src) -} -func (m *RequestCheckTx) XXX_Size() int { - return m.Size() -} -func (m *RequestCheckTx) XXX_DiscardUnknown() { - xxx_messageInfo_RequestCheckTx.DiscardUnknown(m) -} - -var xxx_messageInfo_RequestCheckTx proto.InternalMessageInfo - -func (m *RequestCheckTx) GetTx() []byte { - if m != nil { - return m.Tx - } - return nil -} - -func (m *RequestCheckTx) GetType() CheckTxType { - if m != nil { - return m.Type - } - return CheckTxType_New -} - type RequestDeliverTx struct { Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"` } @@ -940,7 +873,7 @@ func (m *RequestDeliverTx) Reset() { *m = RequestDeliverTx{} } func (m *RequestDeliverTx) String() string { return proto.CompactTextString(m) } func (*RequestDeliverTx) ProtoMessage() {} func (*RequestDeliverTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{8} + return fileDescriptor_252557cfdd89a31a, []int{7} } func (m *RequestDeliverTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -984,7 +917,7 @@ func (m *RequestEndBlock) Reset() { *m = RequestEndBlock{} } func (m *RequestEndBlock) String() string { return proto.CompactTextString(m) } func (*RequestEndBlock) ProtoMessage() {} func (*RequestEndBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{9} + return fileDescriptor_252557cfdd89a31a, []int{8} } func (m *RequestEndBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1020,6 +953,58 @@ func (m *RequestEndBlock) GetHeight() int64 { return 0 } +type RequestCheckTx struct { + Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"` + Type CheckTxType `protobuf:"varint,2,opt,name=type,proto3,enum=tendermint.abci.CheckTxType" json:"type,omitempty"` +} + +func (m *RequestCheckTx) Reset() { *m = RequestCheckTx{} } +func (m *RequestCheckTx) String() string { return proto.CompactTextString(m) } +func (*RequestCheckTx) ProtoMessage() {} +func (*RequestCheckTx) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{9} +} +func (m *RequestCheckTx) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestCheckTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestCheckTx.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RequestCheckTx) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestCheckTx.Merge(m, src) +} +func (m *RequestCheckTx) XXX_Size() int { + return m.Size() +} +func (m *RequestCheckTx) XXX_DiscardUnknown() { + xxx_messageInfo_RequestCheckTx.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestCheckTx proto.InternalMessageInfo + +func (m *RequestCheckTx) GetTx() []byte { + if m != nil { + return m.Tx + } + return nil +} + +func (m *RequestCheckTx) GetType() CheckTxType { + if m != nil { + return m.Type + } + return CheckTxType_New +} + type RequestCommit struct { } @@ -1326,7 +1311,7 @@ func (m *RequestPrepareProposal) GetBlockDataSize() int64 { // Extends a vote with application-side injection type RequestExtendVote struct { - Vote *types1.Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote,omitempty"` + Vote *types.Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote,omitempty"` } func (m *RequestExtendVote) Reset() { *m = RequestExtendVote{} } @@ -1362,7 +1347,7 @@ func (m *RequestExtendVote) XXX_DiscardUnknown() { var xxx_messageInfo_RequestExtendVote proto.InternalMessageInfo -func (m *RequestExtendVote) GetVote() *types1.Vote { +func (m *RequestExtendVote) GetVote() *types.Vote { if m != nil { return m.Vote } @@ -1371,7 +1356,7 @@ func (m *RequestExtendVote) GetVote() *types1.Vote { // Verify the vote extension type RequestVerifyVoteExtension struct { - Vote *types1.Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote,omitempty"` + Vote *types.Vote `protobuf:"bytes,1,opt,name=vote,proto3" json:"vote,omitempty"` } func (m *RequestVerifyVoteExtension) Reset() { *m = RequestVerifyVoteExtension{} } @@ -1407,7 +1392,7 @@ func (m *RequestVerifyVoteExtension) XXX_DiscardUnknown() { var xxx_messageInfo_RequestVerifyVoteExtension proto.InternalMessageInfo -func (m *RequestVerifyVoteExtension) GetVote() *types1.Vote { +func (m *RequestVerifyVoteExtension) GetVote() *types.Vote { if m != nil { return m.Vote } @@ -1415,8 +1400,11 @@ func (m *RequestVerifyVoteExtension) GetVote() *types1.Vote { } type RequestProcessProposal struct { - Header types1.Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header"` - Txs [][]byte `protobuf:"bytes,2,rep,name=txs,proto3" json:"txs,omitempty"` + Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"` + Header types.Header `protobuf:"bytes,2,opt,name=header,proto3" json:"header"` + Txs [][]byte `protobuf:"bytes,3,rep,name=txs,proto3" json:"txs,omitempty"` + LastCommitInfo LastCommitInfo `protobuf:"bytes,4,opt,name=last_commit_info,json=lastCommitInfo,proto3" json:"last_commit_info"` + ByzantineValidators []Evidence `protobuf:"bytes,5,rep,name=byzantine_validators,json=byzantineValidators,proto3" json:"byzantine_validators"` } func (m *RequestProcessProposal) Reset() { *m = RequestProcessProposal{} } @@ -1452,11 +1440,18 @@ func (m *RequestProcessProposal) XXX_DiscardUnknown() { var xxx_messageInfo_RequestProcessProposal proto.InternalMessageInfo -func (m *RequestProcessProposal) GetHeader() types1.Header { +func (m *RequestProcessProposal) GetHash() []byte { + if m != nil { + return m.Hash + } + return nil +} + +func (m *RequestProcessProposal) GetHeader() types.Header { if m != nil { return m.Header } - return types1.Header{} + return types.Header{} } func (m *RequestProcessProposal) GetTxs() [][]byte { @@ -1466,6 +1461,104 @@ func (m *RequestProcessProposal) GetTxs() [][]byte { return nil } +func (m *RequestProcessProposal) GetLastCommitInfo() LastCommitInfo { + if m != nil { + return m.LastCommitInfo + } + return LastCommitInfo{} +} + +func (m *RequestProcessProposal) GetByzantineValidators() []Evidence { + if m != nil { + return m.ByzantineValidators + } + return nil +} + +type RequestFinalizeBlock struct { + Txs [][]byte `protobuf:"bytes,1,rep,name=txs,proto3" json:"txs,omitempty"` + Hash []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"` + Height int64 `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"` + Header types.Header `protobuf:"bytes,4,opt,name=header,proto3" json:"header"` + LastCommitInfo LastCommitInfo `protobuf:"bytes,5,opt,name=last_commit_info,json=lastCommitInfo,proto3" json:"last_commit_info"` + ByzantineValidators []Evidence `protobuf:"bytes,6,rep,name=byzantine_validators,json=byzantineValidators,proto3" json:"byzantine_validators"` +} + +func (m *RequestFinalizeBlock) Reset() { *m = RequestFinalizeBlock{} } +func (m *RequestFinalizeBlock) String() string { return proto.CompactTextString(m) } +func (*RequestFinalizeBlock) ProtoMessage() {} +func (*RequestFinalizeBlock) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{19} +} +func (m *RequestFinalizeBlock) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestFinalizeBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestFinalizeBlock.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RequestFinalizeBlock) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestFinalizeBlock.Merge(m, src) +} +func (m *RequestFinalizeBlock) XXX_Size() int { + return m.Size() +} +func (m *RequestFinalizeBlock) XXX_DiscardUnknown() { + xxx_messageInfo_RequestFinalizeBlock.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestFinalizeBlock proto.InternalMessageInfo + +func (m *RequestFinalizeBlock) GetTxs() [][]byte { + if m != nil { + return m.Txs + } + return nil +} + +func (m *RequestFinalizeBlock) GetHash() []byte { + if m != nil { + return m.Hash + } + return nil +} + +func (m *RequestFinalizeBlock) GetHeight() int64 { + if m != nil { + return m.Height + } + return 0 +} + +func (m *RequestFinalizeBlock) GetHeader() types.Header { + if m != nil { + return m.Header + } + return types.Header{} +} + +func (m *RequestFinalizeBlock) GetLastCommitInfo() LastCommitInfo { + if m != nil { + return m.LastCommitInfo + } + return LastCommitInfo{} +} + +func (m *RequestFinalizeBlock) GetByzantineValidators() []Evidence { + if m != nil { + return m.ByzantineValidators + } + return nil +} + type Response struct { // Types that are valid to be assigned to Value: // *Response_Exception @@ -1487,6 +1580,7 @@ type Response struct { // *Response_ProcessProposal // *Response_ExtendVote // *Response_VerifyVoteExtension + // *Response_FinalizeBlock Value isResponse_Value `protobuf_oneof:"value"` } @@ -1494,7 +1588,7 @@ func (m *Response) Reset() { *m = Response{} } func (m *Response) String() string { return proto.CompactTextString(m) } func (*Response) ProtoMessage() {} func (*Response) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{19} + return fileDescriptor_252557cfdd89a31a, []int{20} } func (m *Response) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1586,6 +1680,9 @@ type Response_ExtendVote struct { type Response_VerifyVoteExtension struct { VerifyVoteExtension *ResponseVerifyVoteExtension `protobuf:"bytes,19,opt,name=verify_vote_extension,json=verifyVoteExtension,proto3,oneof" json:"verify_vote_extension,omitempty"` } +type Response_FinalizeBlock struct { + FinalizeBlock *ResponseFinalizeBlock `protobuf:"bytes,20,opt,name=finalize_block,json=finalizeBlock,proto3,oneof" json:"finalize_block,omitempty"` +} func (*Response_Exception) isResponse_Value() {} func (*Response_Echo) isResponse_Value() {} @@ -1606,6 +1703,7 @@ func (*Response_PrepareProposal) isResponse_Value() {} func (*Response_ProcessProposal) isResponse_Value() {} func (*Response_ExtendVote) isResponse_Value() {} func (*Response_VerifyVoteExtension) isResponse_Value() {} +func (*Response_FinalizeBlock) isResponse_Value() {} func (m *Response) GetValue() isResponse_Value { if m != nil { @@ -1747,6 +1845,13 @@ func (m *Response) GetVerifyVoteExtension() *ResponseVerifyVoteExtension { return nil } +func (m *Response) GetFinalizeBlock() *ResponseFinalizeBlock { + if x, ok := m.GetValue().(*Response_FinalizeBlock); ok { + return x.FinalizeBlock + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Response) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -1769,6 +1874,7 @@ func (*Response) XXX_OneofWrappers() []interface{} { (*Response_ProcessProposal)(nil), (*Response_ExtendVote)(nil), (*Response_VerifyVoteExtension)(nil), + (*Response_FinalizeBlock)(nil), } } @@ -1781,7 +1887,7 @@ func (m *ResponseException) Reset() { *m = ResponseException{} } func (m *ResponseException) String() string { return proto.CompactTextString(m) } func (*ResponseException) ProtoMessage() {} func (*ResponseException) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{20} + return fileDescriptor_252557cfdd89a31a, []int{21} } func (m *ResponseException) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1825,7 +1931,7 @@ func (m *ResponseEcho) Reset() { *m = ResponseEcho{} } func (m *ResponseEcho) String() string { return proto.CompactTextString(m) } func (*ResponseEcho) ProtoMessage() {} func (*ResponseEcho) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{21} + return fileDescriptor_252557cfdd89a31a, []int{22} } func (m *ResponseEcho) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1868,7 +1974,7 @@ func (m *ResponseFlush) Reset() { *m = ResponseFlush{} } func (m *ResponseFlush) String() string { return proto.CompactTextString(m) } func (*ResponseFlush) ProtoMessage() {} func (*ResponseFlush) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{22} + return fileDescriptor_252557cfdd89a31a, []int{23} } func (m *ResponseFlush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1910,7 +2016,7 @@ func (m *ResponseInfo) Reset() { *m = ResponseInfo{} } func (m *ResponseInfo) String() string { return proto.CompactTextString(m) } func (*ResponseInfo) ProtoMessage() {} func (*ResponseInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{23} + return fileDescriptor_252557cfdd89a31a, []int{24} } func (m *ResponseInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1975,16 +2081,16 @@ func (m *ResponseInfo) GetLastBlockAppHash() []byte { } type ResponseInitChain struct { - ConsensusParams *types1.ConsensusParams `protobuf:"bytes,1,opt,name=consensus_params,json=consensusParams,proto3" json:"consensus_params,omitempty"` - Validators []ValidatorUpdate `protobuf:"bytes,2,rep,name=validators,proto3" json:"validators"` - AppHash []byte `protobuf:"bytes,3,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` + ConsensusParams *types.ConsensusParams `protobuf:"bytes,1,opt,name=consensus_params,json=consensusParams,proto3" json:"consensus_params,omitempty"` + Validators []ValidatorUpdate `protobuf:"bytes,2,rep,name=validators,proto3" json:"validators"` + AppHash []byte `protobuf:"bytes,3,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` } func (m *ResponseInitChain) Reset() { *m = ResponseInitChain{} } func (m *ResponseInitChain) String() string { return proto.CompactTextString(m) } func (*ResponseInitChain) ProtoMessage() {} func (*ResponseInitChain) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{24} + return fileDescriptor_252557cfdd89a31a, []int{25} } func (m *ResponseInitChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2013,7 +2119,7 @@ func (m *ResponseInitChain) XXX_DiscardUnknown() { var xxx_messageInfo_ResponseInitChain proto.InternalMessageInfo -func (m *ResponseInitChain) GetConsensusParams() *types1.ConsensusParams { +func (m *ResponseInitChain) GetConsensusParams() *types.ConsensusParams { if m != nil { return m.ConsensusParams } @@ -2051,7 +2157,7 @@ func (m *ResponseQuery) Reset() { *m = ResponseQuery{} } func (m *ResponseQuery) String() string { return proto.CompactTextString(m) } func (*ResponseQuery) ProtoMessage() {} func (*ResponseQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{25} + return fileDescriptor_252557cfdd89a31a, []int{26} } func (m *ResponseQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2151,7 +2257,7 @@ func (m *ResponseBeginBlock) Reset() { *m = ResponseBeginBlock{} } func (m *ResponseBeginBlock) String() string { return proto.CompactTextString(m) } func (*ResponseBeginBlock) ProtoMessage() {} func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{26} + return fileDescriptor_252557cfdd89a31a, []int{27} } func (m *ResponseBeginBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2207,7 +2313,7 @@ func (m *ResponseCheckTx) Reset() { *m = ResponseCheckTx{} } func (m *ResponseCheckTx) String() string { return proto.CompactTextString(m) } func (*ResponseCheckTx) ProtoMessage() {} func (*ResponseCheckTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{27} + return fileDescriptor_252557cfdd89a31a, []int{28} } func (m *ResponseCheckTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2328,7 +2434,7 @@ func (m *ResponseDeliverTx) Reset() { *m = ResponseDeliverTx{} } func (m *ResponseDeliverTx) String() string { return proto.CompactTextString(m) } func (*ResponseDeliverTx) ProtoMessage() {} func (*ResponseDeliverTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{28} + return fileDescriptor_252557cfdd89a31a, []int{29} } func (m *ResponseDeliverTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2414,16 +2520,16 @@ func (m *ResponseDeliverTx) GetCodespace() string { } type ResponseEndBlock struct { - ValidatorUpdates []ValidatorUpdate `protobuf:"bytes,1,rep,name=validator_updates,json=validatorUpdates,proto3" json:"validator_updates"` - ConsensusParamUpdates *types1.ConsensusParams `protobuf:"bytes,2,opt,name=consensus_param_updates,json=consensusParamUpdates,proto3" json:"consensus_param_updates,omitempty"` - Events []Event `protobuf:"bytes,3,rep,name=events,proto3" json:"events,omitempty"` + ValidatorUpdates []ValidatorUpdate `protobuf:"bytes,1,rep,name=validator_updates,json=validatorUpdates,proto3" json:"validator_updates"` + ConsensusParamUpdates *types.ConsensusParams `protobuf:"bytes,2,opt,name=consensus_param_updates,json=consensusParamUpdates,proto3" json:"consensus_param_updates,omitempty"` + Events []Event `protobuf:"bytes,3,rep,name=events,proto3" json:"events,omitempty"` } func (m *ResponseEndBlock) Reset() { *m = ResponseEndBlock{} } func (m *ResponseEndBlock) String() string { return proto.CompactTextString(m) } func (*ResponseEndBlock) ProtoMessage() {} func (*ResponseEndBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{29} + return fileDescriptor_252557cfdd89a31a, []int{30} } func (m *ResponseEndBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2459,7 +2565,7 @@ func (m *ResponseEndBlock) GetValidatorUpdates() []ValidatorUpdate { return nil } -func (m *ResponseEndBlock) GetConsensusParamUpdates() *types1.ConsensusParams { +func (m *ResponseEndBlock) GetConsensusParamUpdates() *types.ConsensusParams { if m != nil { return m.ConsensusParamUpdates } @@ -2483,7 +2589,7 @@ func (m *ResponseCommit) Reset() { *m = ResponseCommit{} } func (m *ResponseCommit) String() string { return proto.CompactTextString(m) } func (*ResponseCommit) ProtoMessage() {} func (*ResponseCommit) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{30} + return fileDescriptor_252557cfdd89a31a, []int{31} } func (m *ResponseCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2534,7 +2640,7 @@ func (m *ResponseListSnapshots) Reset() { *m = ResponseListSnapshots{} } func (m *ResponseListSnapshots) String() string { return proto.CompactTextString(m) } func (*ResponseListSnapshots) ProtoMessage() {} func (*ResponseListSnapshots) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{31} + return fileDescriptor_252557cfdd89a31a, []int{32} } func (m *ResponseListSnapshots) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2578,7 +2684,7 @@ func (m *ResponseOfferSnapshot) Reset() { *m = ResponseOfferSnapshot{} } func (m *ResponseOfferSnapshot) String() string { return proto.CompactTextString(m) } func (*ResponseOfferSnapshot) ProtoMessage() {} func (*ResponseOfferSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{32} + return fileDescriptor_252557cfdd89a31a, []int{33} } func (m *ResponseOfferSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2622,7 +2728,7 @@ func (m *ResponseLoadSnapshotChunk) Reset() { *m = ResponseLoadSnapshotC func (m *ResponseLoadSnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseLoadSnapshotChunk) ProtoMessage() {} func (*ResponseLoadSnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{33} + return fileDescriptor_252557cfdd89a31a, []int{34} } func (m *ResponseLoadSnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2668,7 +2774,7 @@ func (m *ResponseApplySnapshotChunk) Reset() { *m = ResponseApplySnapsho func (m *ResponseApplySnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseApplySnapshotChunk) ProtoMessage() {} func (*ResponseApplySnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{34} + return fileDescriptor_252557cfdd89a31a, []int{35} } func (m *ResponseApplySnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2726,7 +2832,7 @@ func (m *ResponsePrepareProposal) Reset() { *m = ResponsePrepareProposal func (m *ResponsePrepareProposal) String() string { return proto.CompactTextString(m) } func (*ResponsePrepareProposal) ProtoMessage() {} func (*ResponsePrepareProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{35} + return fileDescriptor_252557cfdd89a31a, []int{36} } func (m *ResponsePrepareProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2763,14 +2869,14 @@ func (m *ResponsePrepareProposal) GetBlockData() [][]byte { } type ResponseExtendVote struct { - VoteExtension *types1.VoteExtension `protobuf:"bytes,1,opt,name=vote_extension,json=voteExtension,proto3" json:"vote_extension,omitempty"` + VoteExtension *types.VoteExtension `protobuf:"bytes,1,opt,name=vote_extension,json=voteExtension,proto3" json:"vote_extension,omitempty"` } func (m *ResponseExtendVote) Reset() { *m = ResponseExtendVote{} } func (m *ResponseExtendVote) String() string { return proto.CompactTextString(m) } func (*ResponseExtendVote) ProtoMessage() {} func (*ResponseExtendVote) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{36} + return fileDescriptor_252557cfdd89a31a, []int{37} } func (m *ResponseExtendVote) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2799,7 +2905,7 @@ func (m *ResponseExtendVote) XXX_DiscardUnknown() { var xxx_messageInfo_ResponseExtendVote proto.InternalMessageInfo -func (m *ResponseExtendVote) GetVoteExtension() *types1.VoteExtension { +func (m *ResponseExtendVote) GetVoteExtension() *types.VoteExtension { if m != nil { return m.VoteExtension } @@ -2814,7 +2920,7 @@ func (m *ResponseVerifyVoteExtension) Reset() { *m = ResponseVerifyVoteE func (m *ResponseVerifyVoteExtension) String() string { return proto.CompactTextString(m) } func (*ResponseVerifyVoteExtension) ProtoMessage() {} func (*ResponseVerifyVoteExtension) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{37} + return fileDescriptor_252557cfdd89a31a, []int{38} } func (m *ResponseVerifyVoteExtension) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2851,15 +2957,18 @@ func (m *ResponseVerifyVoteExtension) GetResult() ResponseVerifyVoteExtension_Re } type ResponseProcessProposal struct { - Result ResponseProcessProposal_Result `protobuf:"varint,1,opt,name=result,proto3,enum=tendermint.abci.ResponseProcessProposal_Result" json:"result,omitempty"` - Evidence [][]byte `protobuf:"bytes,2,rep,name=evidence,proto3" json:"evidence,omitempty"` + Accept bool `protobuf:"varint,1,opt,name=accept,proto3" json:"accept,omitempty"` + AppHash []byte `protobuf:"bytes,2,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` + TxResults []*ExecTxResult `protobuf:"bytes,3,rep,name=tx_results,json=txResults,proto3" json:"tx_results,omitempty"` + ValidatorUpdates []*ValidatorUpdate `protobuf:"bytes,4,rep,name=validator_updates,json=validatorUpdates,proto3" json:"validator_updates,omitempty"` + ConsensusParamUpdates *types.ConsensusParams `protobuf:"bytes,5,opt,name=consensus_param_updates,json=consensusParamUpdates,proto3" json:"consensus_param_updates,omitempty"` } func (m *ResponseProcessProposal) Reset() { *m = ResponseProcessProposal{} } func (m *ResponseProcessProposal) String() string { return proto.CompactTextString(m) } func (*ResponseProcessProposal) ProtoMessage() {} func (*ResponseProcessProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{38} + return fileDescriptor_252557cfdd89a31a, []int{39} } func (m *ResponseProcessProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2888,16 +2997,105 @@ func (m *ResponseProcessProposal) XXX_DiscardUnknown() { var xxx_messageInfo_ResponseProcessProposal proto.InternalMessageInfo -func (m *ResponseProcessProposal) GetResult() ResponseProcessProposal_Result { +func (m *ResponseProcessProposal) GetAccept() bool { if m != nil { - return m.Result + return m.Accept } - return ResponseProcessProposal_UNKNOWN + return false } -func (m *ResponseProcessProposal) GetEvidence() [][]byte { +func (m *ResponseProcessProposal) GetAppHash() []byte { if m != nil { - return m.Evidence + return m.AppHash + } + return nil +} + +func (m *ResponseProcessProposal) GetTxResults() []*ExecTxResult { + if m != nil { + return m.TxResults + } + return nil +} + +func (m *ResponseProcessProposal) GetValidatorUpdates() []*ValidatorUpdate { + if m != nil { + return m.ValidatorUpdates + } + return nil +} + +func (m *ResponseProcessProposal) GetConsensusParamUpdates() *types.ConsensusParams { + if m != nil { + return m.ConsensusParamUpdates + } + return nil +} + +type ResponseFinalizeBlock struct { + Txs []*ResponseDeliverTx `protobuf:"bytes,1,rep,name=txs,proto3" json:"txs,omitempty"` + ValidatorUpdates []ValidatorUpdate `protobuf:"bytes,2,rep,name=validator_updates,json=validatorUpdates,proto3" json:"validator_updates"` + ConsensusParamUpdates *types.ConsensusParams `protobuf:"bytes,3,opt,name=consensus_param_updates,json=consensusParamUpdates,proto3" json:"consensus_param_updates,omitempty"` + Events []Event `protobuf:"bytes,4,rep,name=events,proto3" json:"events,omitempty"` +} + +func (m *ResponseFinalizeBlock) Reset() { *m = ResponseFinalizeBlock{} } +func (m *ResponseFinalizeBlock) String() string { return proto.CompactTextString(m) } +func (*ResponseFinalizeBlock) ProtoMessage() {} +func (*ResponseFinalizeBlock) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{40} +} +func (m *ResponseFinalizeBlock) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResponseFinalizeBlock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResponseFinalizeBlock.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ResponseFinalizeBlock) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResponseFinalizeBlock.Merge(m, src) +} +func (m *ResponseFinalizeBlock) XXX_Size() int { + return m.Size() +} +func (m *ResponseFinalizeBlock) XXX_DiscardUnknown() { + xxx_messageInfo_ResponseFinalizeBlock.DiscardUnknown(m) +} + +var xxx_messageInfo_ResponseFinalizeBlock proto.InternalMessageInfo + +func (m *ResponseFinalizeBlock) GetTxs() []*ResponseDeliverTx { + if m != nil { + return m.Txs + } + return nil +} + +func (m *ResponseFinalizeBlock) GetValidatorUpdates() []ValidatorUpdate { + if m != nil { + return m.ValidatorUpdates + } + return nil +} + +func (m *ResponseFinalizeBlock) GetConsensusParamUpdates() *types.ConsensusParams { + if m != nil { + return m.ConsensusParamUpdates + } + return nil +} + +func (m *ResponseFinalizeBlock) GetEvents() []Event { + if m != nil { + return m.Events } return nil } @@ -2911,7 +3109,7 @@ func (m *LastCommitInfo) Reset() { *m = LastCommitInfo{} } func (m *LastCommitInfo) String() string { return proto.CompactTextString(m) } func (*LastCommitInfo) ProtoMessage() {} func (*LastCommitInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{39} + return fileDescriptor_252557cfdd89a31a, []int{41} } func (m *LastCommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2966,7 +3164,7 @@ func (m *Event) Reset() { *m = Event{} } func (m *Event) String() string { return proto.CompactTextString(m) } func (*Event) ProtoMessage() {} func (*Event) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{40} + return fileDescriptor_252557cfdd89a31a, []int{42} } func (m *Event) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3020,7 +3218,7 @@ func (m *EventAttribute) Reset() { *m = EventAttribute{} } func (m *EventAttribute) String() string { return proto.CompactTextString(m) } func (*EventAttribute) ProtoMessage() {} func (*EventAttribute) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{41} + return fileDescriptor_252557cfdd89a31a, []int{43} } func (m *EventAttribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3070,6 +3268,109 @@ func (m *EventAttribute) GetIndex() bool { return false } +// ExecTxResult contains results of executing one individual transaction. +// +// * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted +type ExecTxResult struct { + Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` + Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` + Log string `protobuf:"bytes,3,opt,name=log,proto3" json:"log,omitempty"` + Info string `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"` + GasWanted int64 `protobuf:"varint,5,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"` + GasUsed int64 `protobuf:"varint,6,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"` + TxEvents []Event `protobuf:"bytes,7,rep,name=tx_events,json=txEvents,proto3" json:"events,omitempty"` + Codespace string `protobuf:"bytes,8,opt,name=codespace,proto3" json:"codespace,omitempty"` +} + +func (m *ExecTxResult) Reset() { *m = ExecTxResult{} } +func (m *ExecTxResult) String() string { return proto.CompactTextString(m) } +func (*ExecTxResult) ProtoMessage() {} +func (*ExecTxResult) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{44} +} +func (m *ExecTxResult) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ExecTxResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ExecTxResult.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ExecTxResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecTxResult.Merge(m, src) +} +func (m *ExecTxResult) XXX_Size() int { + return m.Size() +} +func (m *ExecTxResult) XXX_DiscardUnknown() { + xxx_messageInfo_ExecTxResult.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecTxResult proto.InternalMessageInfo + +func (m *ExecTxResult) GetCode() uint32 { + if m != nil { + return m.Code + } + return 0 +} + +func (m *ExecTxResult) GetData() []byte { + if m != nil { + return m.Data + } + return nil +} + +func (m *ExecTxResult) GetLog() string { + if m != nil { + return m.Log + } + return "" +} + +func (m *ExecTxResult) GetInfo() string { + if m != nil { + return m.Info + } + return "" +} + +func (m *ExecTxResult) GetGasWanted() int64 { + if m != nil { + return m.GasWanted + } + return 0 +} + +func (m *ExecTxResult) GetGasUsed() int64 { + if m != nil { + return m.GasUsed + } + return 0 +} + +func (m *ExecTxResult) GetTxEvents() []Event { + if m != nil { + return m.TxEvents + } + return nil +} + +func (m *ExecTxResult) GetCodespace() string { + if m != nil { + return m.Codespace + } + return "" +} + // TxResult contains results of executing the transaction. // // One usage is indexing transaction results. @@ -3084,7 +3385,7 @@ func (m *TxResult) Reset() { *m = TxResult{} } func (m *TxResult) String() string { return proto.CompactTextString(m) } func (*TxResult) ProtoMessage() {} func (*TxResult) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{42} + return fileDescriptor_252557cfdd89a31a, []int{45} } func (m *TxResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3152,7 +3453,7 @@ func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{43} + return fileDescriptor_252557cfdd89a31a, []int{46} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3205,7 +3506,7 @@ func (m *ValidatorUpdate) Reset() { *m = ValidatorUpdate{} } func (m *ValidatorUpdate) String() string { return proto.CompactTextString(m) } func (*ValidatorUpdate) ProtoMessage() {} func (*ValidatorUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{44} + return fileDescriptor_252557cfdd89a31a, []int{47} } func (m *ValidatorUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3258,7 +3559,7 @@ func (m *VoteInfo) Reset() { *m = VoteInfo{} } func (m *VoteInfo) String() string { return proto.CompactTextString(m) } func (*VoteInfo) ProtoMessage() {} func (*VoteInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{45} + return fileDescriptor_252557cfdd89a31a, []int{48} } func (m *VoteInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3319,7 +3620,7 @@ func (m *Evidence) Reset() { *m = Evidence{} } func (m *Evidence) String() string { return proto.CompactTextString(m) } func (*Evidence) ProtoMessage() {} func (*Evidence) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{46} + return fileDescriptor_252557cfdd89a31a, []int{49} } func (m *Evidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3395,7 +3696,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{47} + return fileDescriptor_252557cfdd89a31a, []int{50} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3465,17 +3766,16 @@ func init() { proto.RegisterEnum("tendermint.abci.ResponseOfferSnapshot_Result", ResponseOfferSnapshot_Result_name, ResponseOfferSnapshot_Result_value) proto.RegisterEnum("tendermint.abci.ResponseApplySnapshotChunk_Result", ResponseApplySnapshotChunk_Result_name, ResponseApplySnapshotChunk_Result_value) proto.RegisterEnum("tendermint.abci.ResponseVerifyVoteExtension_Result", ResponseVerifyVoteExtension_Result_name, ResponseVerifyVoteExtension_Result_value) - proto.RegisterEnum("tendermint.abci.ResponseProcessProposal_Result", ResponseProcessProposal_Result_name, ResponseProcessProposal_Result_value) proto.RegisterType((*Request)(nil), "tendermint.abci.Request") proto.RegisterType((*RequestEcho)(nil), "tendermint.abci.RequestEcho") + proto.RegisterType((*RequestBeginBlock)(nil), "tendermint.abci.RequestBeginBlock") proto.RegisterType((*RequestFlush)(nil), "tendermint.abci.RequestFlush") proto.RegisterType((*RequestInfo)(nil), "tendermint.abci.RequestInfo") proto.RegisterType((*RequestInitChain)(nil), "tendermint.abci.RequestInitChain") proto.RegisterType((*RequestQuery)(nil), "tendermint.abci.RequestQuery") - proto.RegisterType((*RequestBeginBlock)(nil), "tendermint.abci.RequestBeginBlock") - proto.RegisterType((*RequestCheckTx)(nil), "tendermint.abci.RequestCheckTx") proto.RegisterType((*RequestDeliverTx)(nil), "tendermint.abci.RequestDeliverTx") proto.RegisterType((*RequestEndBlock)(nil), "tendermint.abci.RequestEndBlock") + proto.RegisterType((*RequestCheckTx)(nil), "tendermint.abci.RequestCheckTx") proto.RegisterType((*RequestCommit)(nil), "tendermint.abci.RequestCommit") proto.RegisterType((*RequestListSnapshots)(nil), "tendermint.abci.RequestListSnapshots") proto.RegisterType((*RequestOfferSnapshot)(nil), "tendermint.abci.RequestOfferSnapshot") @@ -3485,6 +3785,7 @@ func init() { proto.RegisterType((*RequestExtendVote)(nil), "tendermint.abci.RequestExtendVote") proto.RegisterType((*RequestVerifyVoteExtension)(nil), "tendermint.abci.RequestVerifyVoteExtension") proto.RegisterType((*RequestProcessProposal)(nil), "tendermint.abci.RequestProcessProposal") + proto.RegisterType((*RequestFinalizeBlock)(nil), "tendermint.abci.RequestFinalizeBlock") proto.RegisterType((*Response)(nil), "tendermint.abci.Response") proto.RegisterType((*ResponseException)(nil), "tendermint.abci.ResponseException") proto.RegisterType((*ResponseEcho)(nil), "tendermint.abci.ResponseEcho") @@ -3505,9 +3806,11 @@ func init() { proto.RegisterType((*ResponseExtendVote)(nil), "tendermint.abci.ResponseExtendVote") proto.RegisterType((*ResponseVerifyVoteExtension)(nil), "tendermint.abci.ResponseVerifyVoteExtension") proto.RegisterType((*ResponseProcessProposal)(nil), "tendermint.abci.ResponseProcessProposal") + proto.RegisterType((*ResponseFinalizeBlock)(nil), "tendermint.abci.ResponseFinalizeBlock") proto.RegisterType((*LastCommitInfo)(nil), "tendermint.abci.LastCommitInfo") proto.RegisterType((*Event)(nil), "tendermint.abci.Event") proto.RegisterType((*EventAttribute)(nil), "tendermint.abci.EventAttribute") + proto.RegisterType((*ExecTxResult)(nil), "tendermint.abci.ExecTxResult") proto.RegisterType((*TxResult)(nil), "tendermint.abci.TxResult") proto.RegisterType((*Validator)(nil), "tendermint.abci.Validator") proto.RegisterType((*ValidatorUpdate)(nil), "tendermint.abci.ValidatorUpdate") @@ -3519,197 +3822,210 @@ func init() { func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 3029 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcd, 0x73, 0x23, 0xd5, - 0xb5, 0xd7, 0xa7, 0x2d, 0x1d, 0xeb, 0xcb, 0xd7, 0xc3, 0x20, 0x9a, 0x19, 0x7b, 0xe8, 0x29, 0x60, - 0x18, 0xc0, 0x7e, 0x78, 0x0a, 0xde, 0x50, 0xbc, 0xf7, 0xc0, 0xd2, 0xc8, 0xc8, 0x8c, 0x9f, 0xed, - 0x5c, 0x6b, 0x86, 0x22, 0x81, 0x69, 0x5a, 0xd2, 0xb5, 0xd5, 0x8c, 0xd4, 0xdd, 0x74, 0xb7, 0x84, - 0x3d, 0xcb, 0x54, 0xb2, 0xa1, 0xb2, 0x60, 0x99, 0x0d, 0xab, 0x64, 0x9b, 0x7d, 0x56, 0x59, 0xb1, - 0x60, 0x91, 0x05, 0xcb, 0x2c, 0x52, 0x24, 0x05, 0xbb, 0xfc, 0x03, 0xa9, 0x4a, 0x55, 0xaa, 0x52, - 0xf7, 0xa3, 0x3f, 0xa5, 0x96, 0x5a, 0x90, 0x5d, 0x76, 0x7d, 0x4f, 0x9f, 0x73, 0xfa, 0x7e, 0x9e, - 0xf3, 0xfb, 0x9d, 0xbe, 0xf0, 0xac, 0x43, 0xf4, 0x3e, 0xb1, 0x46, 0x9a, 0xee, 0xec, 0xa8, 0xdd, - 0x9e, 0xb6, 0xe3, 0x5c, 0x9a, 0xc4, 0xde, 0x36, 0x2d, 0xc3, 0x31, 0x50, 0xd5, 0x7f, 0xb9, 0x4d, - 0x5f, 0x4a, 0xd7, 0x03, 0xda, 0x3d, 0xeb, 0xd2, 0x74, 0x8c, 0x1d, 0xd3, 0x32, 0x8c, 0x33, 0xae, - 0x2f, 0x5d, 0x0b, 0xbc, 0x66, 0x7e, 0x82, 0xde, 0x42, 0x6f, 0x85, 0xf1, 0x63, 0x72, 0xe9, 0xbe, - 0xbd, 0x3e, 0x65, 0x6b, 0xaa, 0x96, 0x3a, 0x72, 0x5f, 0x6f, 0x9d, 0x1b, 0xc6, 0xf9, 0x90, 0xec, - 0xb0, 0x56, 0x77, 0x7c, 0xb6, 0xe3, 0x68, 0x23, 0x62, 0x3b, 0xea, 0xc8, 0x14, 0x0a, 0x57, 0xce, - 0x8d, 0x73, 0x83, 0x3d, 0xee, 0xd0, 0x27, 0x2e, 0x95, 0x7f, 0x03, 0xb0, 0x8a, 0xc9, 0xa7, 0x63, - 0x62, 0x3b, 0x68, 0x17, 0x72, 0xa4, 0x37, 0x30, 0xea, 0xe9, 0x1b, 0xe9, 0x5b, 0x6b, 0xbb, 0xd7, - 0xb6, 0x23, 0x83, 0xdb, 0x16, 0x7a, 0xad, 0xde, 0xc0, 0x68, 0xa7, 0x30, 0xd3, 0x45, 0xaf, 0x43, - 0xfe, 0x6c, 0x38, 0xb6, 0x07, 0xf5, 0x0c, 0x33, 0xba, 0x1e, 0x67, 0xb4, 0x4f, 0x95, 0xda, 0x29, - 0xcc, 0xb5, 0xe9, 0xa7, 0x34, 0xfd, 0xcc, 0xa8, 0x67, 0xe7, 0x7f, 0xea, 0x40, 0x3f, 0x63, 0x9f, - 0xa2, 0xba, 0xa8, 0x01, 0xa0, 0xe9, 0x9a, 0xa3, 0xf4, 0x06, 0xaa, 0xa6, 0xd7, 0x73, 0xcc, 0xf2, - 0xb9, 0x78, 0x4b, 0xcd, 0x69, 0x52, 0xc5, 0x76, 0x0a, 0x17, 0x35, 0xb7, 0x41, 0xbb, 0xfb, 0xe9, - 0x98, 0x58, 0x97, 0xf5, 0xfc, 0xfc, 0xee, 0xfe, 0x84, 0x2a, 0xd1, 0xee, 0x32, 0x6d, 0xd4, 0x82, - 0xb5, 0x2e, 0x39, 0xd7, 0x74, 0xa5, 0x3b, 0x34, 0x7a, 0x8f, 0xeb, 0x2b, 0xcc, 0x58, 0x8e, 0x33, - 0x6e, 0x50, 0xd5, 0x06, 0xd5, 0x6c, 0xa7, 0x30, 0x74, 0xbd, 0x16, 0xfa, 0x1f, 0x28, 0xf4, 0x06, - 0xa4, 0xf7, 0x58, 0x71, 0x2e, 0xea, 0xab, 0xcc, 0xc7, 0x56, 0x9c, 0x8f, 0x26, 0xd5, 0xeb, 0x5c, - 0xb4, 0x53, 0x78, 0xb5, 0xc7, 0x1f, 0xe9, 0xf8, 0xfb, 0x64, 0xa8, 0x4d, 0x88, 0x45, 0xed, 0x0b, - 0xf3, 0xc7, 0x7f, 0x8f, 0x6b, 0x32, 0x0f, 0xc5, 0xbe, 0xdb, 0x40, 0x6f, 0x43, 0x91, 0xe8, 0x7d, - 0x31, 0x8c, 0x22, 0x73, 0x71, 0x23, 0x76, 0x9d, 0xf5, 0xbe, 0x3b, 0x88, 0x02, 0x11, 0xcf, 0xe8, - 0x2e, 0xac, 0xf4, 0x8c, 0xd1, 0x48, 0x73, 0xea, 0xc0, 0xac, 0x37, 0x63, 0x07, 0xc0, 0xb4, 0xda, - 0x29, 0x2c, 0xf4, 0xd1, 0x11, 0x54, 0x86, 0x9a, 0xed, 0x28, 0xb6, 0xae, 0x9a, 0xf6, 0xc0, 0x70, - 0xec, 0xfa, 0x1a, 0xf3, 0xf0, 0x7c, 0x9c, 0x87, 0x43, 0xcd, 0x76, 0x4e, 0x5d, 0xe5, 0x76, 0x0a, - 0x97, 0x87, 0x41, 0x01, 0xf5, 0x67, 0x9c, 0x9d, 0x11, 0xcb, 0x73, 0x58, 0x2f, 0xcd, 0xf7, 0x77, - 0x4c, 0xb5, 0x5d, 0x7b, 0xea, 0xcf, 0x08, 0x0a, 0xd0, 0xcf, 0x60, 0x63, 0x68, 0xa8, 0x7d, 0xcf, - 0x9d, 0xd2, 0x1b, 0x8c, 0xf5, 0xc7, 0xf5, 0x32, 0x73, 0xfa, 0x52, 0x6c, 0x27, 0x0d, 0xb5, 0xef, - 0xba, 0x68, 0x52, 0x83, 0x76, 0x0a, 0xaf, 0x0f, 0xa3, 0x42, 0xf4, 0x08, 0xae, 0xa8, 0xa6, 0x39, - 0xbc, 0x8c, 0x7a, 0xaf, 0x30, 0xef, 0xb7, 0xe3, 0xbc, 0xef, 0x51, 0x9b, 0xa8, 0x7b, 0xa4, 0x4e, - 0x49, 0x51, 0x07, 0x6a, 0xa6, 0x45, 0x4c, 0xd5, 0x22, 0x8a, 0x69, 0x19, 0xa6, 0x61, 0xab, 0xc3, - 0x7a, 0x95, 0xf9, 0x7e, 0x31, 0xce, 0xf7, 0x09, 0xd7, 0x3f, 0x11, 0xea, 0xed, 0x14, 0xae, 0x9a, - 0x61, 0x11, 0xf7, 0x6a, 0xf4, 0x88, 0x6d, 0xfb, 0x5e, 0x6b, 0x8b, 0xbc, 0x32, 0xfd, 0xb0, 0xd7, - 0x90, 0x88, 0x1e, 0x26, 0x72, 0x41, 0xcd, 0x95, 0x89, 0xe1, 0x90, 0xfa, 0xfa, 0xfc, 0xc3, 0xd4, - 0x62, 0xaa, 0x0f, 0x0d, 0x87, 0xd0, 0xc3, 0x44, 0xbc, 0x16, 0x52, 0xe1, 0xa9, 0x09, 0xb1, 0xb4, - 0xb3, 0x4b, 0xe6, 0x46, 0x61, 0x6f, 0x6c, 0xcd, 0xd0, 0xeb, 0x88, 0x39, 0x7c, 0x39, 0xce, 0xe1, - 0x43, 0x66, 0x44, 0x5d, 0xb4, 0x5c, 0x93, 0x76, 0x0a, 0x6f, 0x4c, 0xa6, 0xc5, 0x8d, 0x55, 0xc8, - 0x4f, 0xd4, 0xe1, 0x98, 0xc8, 0x2f, 0xc2, 0x5a, 0x20, 0xf8, 0xa1, 0x3a, 0xac, 0x8e, 0x88, 0x6d, - 0xab, 0xe7, 0x84, 0xc5, 0xca, 0x22, 0x76, 0x9b, 0x72, 0x05, 0x4a, 0xc1, 0x80, 0x27, 0x7f, 0x91, - 0xf6, 0x2c, 0x69, 0x2c, 0xa3, 0x96, 0x13, 0x62, 0xb1, 0x6e, 0x0a, 0x4b, 0xd1, 0x44, 0x37, 0xa1, - 0xcc, 0x4e, 0xa5, 0xe2, 0xbe, 0xa7, 0x01, 0x35, 0x87, 0x4b, 0x4c, 0xf8, 0x50, 0x28, 0x6d, 0xc1, - 0x9a, 0xb9, 0x6b, 0x7a, 0x2a, 0x59, 0xa6, 0x02, 0xe6, 0xae, 0xe9, 0x2a, 0x3c, 0x07, 0x25, 0x3a, - 0x56, 0x4f, 0x23, 0xc7, 0x3e, 0xb2, 0x46, 0x65, 0x42, 0x45, 0xfe, 0x63, 0x06, 0x6a, 0xd1, 0x20, - 0x89, 0xee, 0x42, 0x8e, 0xe6, 0x0b, 0x11, 0xfa, 0xa5, 0x6d, 0x9e, 0x4c, 0xb6, 0xdd, 0x64, 0xb2, - 0xdd, 0x71, 0x93, 0x49, 0xa3, 0xf0, 0xf5, 0xb7, 0x5b, 0xa9, 0x2f, 0xfe, 0xb2, 0x95, 0xc6, 0xcc, - 0x02, 0x3d, 0x43, 0x63, 0x9a, 0xaa, 0xe9, 0x8a, 0xd6, 0x67, 0x5d, 0x2e, 0xd2, 0x80, 0xa5, 0x6a, - 0xfa, 0x41, 0x1f, 0x1d, 0x42, 0xad, 0x67, 0xe8, 0x36, 0xd1, 0xed, 0xb1, 0xad, 0xf0, 0x64, 0x25, - 0x02, 0x7e, 0x28, 0x6c, 0xf1, 0x14, 0xd8, 0x74, 0x35, 0x4f, 0x98, 0x22, 0xae, 0xf6, 0xc2, 0x02, - 0xb4, 0x0f, 0x30, 0x51, 0x87, 0x5a, 0x5f, 0x75, 0x0c, 0xcb, 0xae, 0xe7, 0x6e, 0x64, 0x67, 0xc6, - 0xae, 0x87, 0xae, 0xca, 0x03, 0xb3, 0xaf, 0x3a, 0xa4, 0x91, 0xa3, 0xdd, 0xc5, 0x01, 0x4b, 0xf4, - 0x02, 0x54, 0x55, 0xd3, 0x54, 0x6c, 0x47, 0x75, 0x88, 0xd2, 0xbd, 0x74, 0x88, 0xcd, 0x92, 0x41, - 0x09, 0x97, 0x55, 0xd3, 0x3c, 0xa5, 0xd2, 0x06, 0x15, 0xa2, 0xe7, 0xa1, 0x42, 0xf3, 0x86, 0xa6, - 0x0e, 0x95, 0x01, 0xd1, 0xce, 0x07, 0x0e, 0x0b, 0xfb, 0x59, 0x5c, 0x16, 0xd2, 0x36, 0x13, 0xca, - 0x7d, 0x6f, 0xc5, 0x59, 0xce, 0x40, 0x08, 0x72, 0x7d, 0xd5, 0x51, 0xd9, 0x4c, 0x96, 0x30, 0x7b, - 0xa6, 0x32, 0x53, 0x75, 0x06, 0x62, 0x7e, 0xd8, 0x33, 0xba, 0x0a, 0x2b, 0xc2, 0x6d, 0x96, 0xb9, - 0x15, 0x2d, 0x74, 0x05, 0xf2, 0xa6, 0x65, 0x4c, 0x08, 0x5b, 0xba, 0x02, 0xe6, 0x0d, 0xf9, 0x17, - 0x19, 0x58, 0x9f, 0xca, 0x2e, 0xd4, 0xef, 0x40, 0xb5, 0x07, 0xee, 0xb7, 0xe8, 0x33, 0x7a, 0x83, - 0xfa, 0x55, 0xfb, 0xc4, 0x12, 0x19, 0xb9, 0x3e, 0x3d, 0xd5, 0x6d, 0xf6, 0x5e, 0x4c, 0x8d, 0xd0, - 0x46, 0xc7, 0x50, 0x1b, 0xaa, 0xb6, 0xa3, 0xf0, 0x68, 0xad, 0x04, 0xb2, 0xf3, 0x74, 0x8e, 0x3a, - 0x54, 0xdd, 0xf8, 0x4e, 0x37, 0xb5, 0x70, 0x54, 0x19, 0x86, 0xa4, 0x08, 0xc3, 0x95, 0xee, 0xe5, - 0x13, 0x55, 0x77, 0x34, 0x9d, 0x28, 0x53, 0x2b, 0xf7, 0xcc, 0x94, 0xd3, 0xd6, 0x44, 0xeb, 0x13, - 0xbd, 0xe7, 0x2e, 0xd9, 0x86, 0x67, 0xec, 0x2d, 0xa9, 0x2d, 0x63, 0xa8, 0x84, 0xf3, 0x23, 0xaa, - 0x40, 0xc6, 0xb9, 0x10, 0x13, 0x90, 0x71, 0x2e, 0xd0, 0x7f, 0x41, 0x8e, 0x0e, 0x92, 0x0d, 0xbe, - 0x32, 0x03, 0x58, 0x08, 0xbb, 0xce, 0xa5, 0x49, 0x30, 0xd3, 0x94, 0x65, 0xef, 0x38, 0x78, 0x39, - 0x33, 0xea, 0x55, 0x7e, 0x09, 0xaa, 0x91, 0xa4, 0x18, 0x58, 0xbf, 0x74, 0x70, 0xfd, 0xe4, 0x2a, - 0x94, 0x43, 0x19, 0x50, 0xbe, 0x0a, 0x57, 0x66, 0x25, 0x34, 0x79, 0xe0, 0xc9, 0x43, 0x89, 0x09, - 0xbd, 0x0e, 0x05, 0x2f, 0xa3, 0xf1, 0xe3, 0x38, 0x3d, 0x57, 0xae, 0x32, 0xf6, 0x54, 0xe9, 0x39, - 0xa4, 0xdb, 0x9a, 0xed, 0x87, 0x0c, 0xeb, 0xf8, 0xaa, 0x6a, 0x9a, 0x6d, 0xd5, 0x1e, 0xc8, 0x1f, - 0x43, 0x3d, 0x2e, 0x5b, 0x45, 0x86, 0x91, 0xf3, 0xb6, 0xe1, 0x55, 0x58, 0x39, 0x33, 0xac, 0x91, - 0xea, 0x30, 0x67, 0x65, 0x2c, 0x5a, 0x74, 0x7b, 0xf2, 0xcc, 0x95, 0x65, 0x62, 0xde, 0x90, 0x15, - 0x78, 0x26, 0x36, 0x63, 0x51, 0x13, 0x4d, 0xef, 0x13, 0x3e, 0x9f, 0x65, 0xcc, 0x1b, 0xbe, 0x23, - 0xde, 0x59, 0xde, 0xa0, 0x9f, 0xb5, 0xd9, 0x58, 0x99, 0xff, 0x22, 0x16, 0x2d, 0x59, 0x81, 0xab, - 0xb3, 0xd3, 0x16, 0xba, 0x0e, 0xc0, 0xe3, 0xa6, 0x38, 0x75, 0xd9, 0x5b, 0x25, 0x5c, 0x64, 0x92, - 0x7b, 0xf4, 0xe8, 0xbd, 0x00, 0x55, 0xff, 0xb5, 0x62, 0x6b, 0x4f, 0xf8, 0xd6, 0xc8, 0xe2, 0xb2, - 0xa7, 0x73, 0xaa, 0x3d, 0x21, 0xf2, 0xdb, 0xde, 0xf9, 0xf2, 0x13, 0x0e, 0xba, 0x0d, 0x39, 0x96, - 0xa2, 0xf8, 0x32, 0x5c, 0x9d, 0x3e, 0x49, 0x54, 0x0b, 0x33, 0x1d, 0xb9, 0x0d, 0x52, 0x7c, 0x82, - 0x59, 0xca, 0x53, 0x37, 0x30, 0xd6, 0x70, 0xe6, 0xf4, 0xcf, 0x76, 0x7a, 0xa9, 0xb3, 0x5d, 0x83, - 0xac, 0x73, 0x61, 0xd7, 0x33, 0x6c, 0x72, 0xe8, 0xa3, 0xfc, 0x0f, 0x80, 0x02, 0x26, 0xb6, 0x49, - 0x63, 0x2c, 0x6a, 0x40, 0x91, 0x5c, 0xf4, 0x88, 0xe9, 0xb8, 0x69, 0x69, 0x76, 0x3a, 0xe6, 0xda, - 0x2d, 0x57, 0x93, 0x02, 0x4b, 0xcf, 0x0c, 0xdd, 0x11, 0xdc, 0x21, 0x9e, 0x06, 0x08, 0xf3, 0x20, - 0x79, 0x78, 0xc3, 0x25, 0x0f, 0xd9, 0x58, 0x2c, 0xc9, 0xad, 0x22, 0xec, 0xe1, 0x8e, 0x60, 0x0f, - 0xb9, 0x05, 0x1f, 0x0b, 0xd1, 0x87, 0x66, 0x88, 0x3e, 0xe4, 0x17, 0x0c, 0x33, 0x86, 0x3f, 0xbc, - 0xe1, 0xf2, 0x87, 0x95, 0x05, 0x3d, 0x8e, 0x10, 0x88, 0xfd, 0x30, 0x81, 0xe0, 0xe0, 0xff, 0x66, - 0xac, 0x75, 0x2c, 0x83, 0xf8, 0xdf, 0x00, 0x83, 0x28, 0xc4, 0xc2, 0x77, 0xee, 0x64, 0x06, 0x85, - 0x68, 0x86, 0x28, 0x44, 0x71, 0xc1, 0x1c, 0xc4, 0x70, 0x88, 0x77, 0x82, 0x1c, 0x02, 0x62, 0x69, - 0x88, 0x58, 0xef, 0x59, 0x24, 0xe2, 0x4d, 0x8f, 0x44, 0xac, 0xc5, 0xb2, 0x20, 0x31, 0x86, 0x28, - 0x8b, 0x38, 0x9e, 0x62, 0x11, 0x1c, 0xf5, 0xbf, 0x10, 0xeb, 0x62, 0x01, 0x8d, 0x38, 0x9e, 0xa2, - 0x11, 0xe5, 0x05, 0x0e, 0x17, 0xf0, 0x88, 0x0f, 0x67, 0xf3, 0x88, 0x78, 0xa4, 0x2f, 0xba, 0x99, - 0x8c, 0x48, 0x28, 0x31, 0x44, 0xa2, 0x1a, 0x0b, 0x7a, 0xb9, 0xfb, 0xc4, 0x4c, 0xe2, 0xc1, 0x0c, - 0x26, 0xc1, 0x31, 0xff, 0xad, 0x58, 0xe7, 0x09, 0xa8, 0xc4, 0x83, 0x19, 0x54, 0x62, 0x7d, 0xa1, - 0xdb, 0x85, 0x5c, 0x62, 0x3f, 0xcc, 0x25, 0xd0, 0x82, 0x73, 0x15, 0x4b, 0x26, 0xba, 0x71, 0x64, - 0x62, 0x83, 0x79, 0x7c, 0x25, 0xd6, 0xe3, 0x0f, 0x61, 0x13, 0x2f, 0xd1, 0x5c, 0x13, 0x89, 0xa6, - 0x34, 0x1f, 0x12, 0xcb, 0x32, 0x2c, 0xc1, 0x0b, 0x78, 0x43, 0xbe, 0x45, 0xd1, 0xa5, 0x1f, 0x39, - 0xe7, 0x30, 0x0f, 0x86, 0x3b, 0x02, 0xd1, 0x52, 0xfe, 0x7d, 0xda, 0xb7, 0x65, 0x80, 0x2c, 0x88, - 0x4c, 0x8b, 0x02, 0x99, 0x06, 0xf8, 0x48, 0x26, 0xcc, 0x47, 0xb6, 0x60, 0x8d, 0xe2, 0x89, 0x08, - 0xd5, 0x50, 0x4d, 0x8f, 0x6a, 0xdc, 0x86, 0x75, 0x06, 0x18, 0x79, 0x7a, 0x15, 0x20, 0x22, 0xc7, - 0x72, 0x6b, 0x95, 0xbe, 0xe0, 0xc7, 0x9e, 0xa3, 0x89, 0x57, 0x61, 0x23, 0xa0, 0xeb, 0xe1, 0x14, - 0x8e, 0xbb, 0x6b, 0x9e, 0xf6, 0x9e, 0x00, 0x2c, 0x5f, 0xa5, 0xfd, 0x19, 0xf2, 0x39, 0xca, 0x2c, - 0x3a, 0x91, 0xfe, 0x37, 0xd1, 0x89, 0xcc, 0x0f, 0xa6, 0x13, 0x41, 0xdc, 0x95, 0x0d, 0xe3, 0xae, - 0xbf, 0xa7, 0xfd, 0x35, 0xf1, 0xc8, 0x41, 0xcf, 0xe8, 0x13, 0x81, 0x84, 0xd8, 0x33, 0x4d, 0xce, - 0x43, 0xe3, 0x5c, 0xe0, 0x1d, 0xfa, 0x48, 0xb5, 0xbc, 0xf4, 0x56, 0x14, 0xd9, 0xcb, 0x03, 0x51, - 0x79, 0x36, 0xc3, 0x02, 0x44, 0xd5, 0x20, 0xfb, 0x98, 0xf0, 0x64, 0x54, 0xc2, 0xf4, 0x91, 0xea, - 0xb1, 0x4d, 0xc6, 0x52, 0x4c, 0x09, 0xf3, 0x06, 0xba, 0x0b, 0x45, 0x56, 0x86, 0x54, 0x0c, 0xd3, - 0x16, 0x79, 0xe3, 0xd9, 0xe0, 0x58, 0x79, 0xb5, 0x71, 0xfb, 0x84, 0xea, 0x1c, 0x9b, 0x36, 0x2e, - 0x98, 0xe2, 0x29, 0x80, 0x0f, 0x8b, 0x21, 0x9a, 0x72, 0x0d, 0x8a, 0xb4, 0xf7, 0xb6, 0xa9, 0xf6, - 0x08, 0x4b, 0x02, 0x45, 0xec, 0x0b, 0xe4, 0x47, 0x80, 0xa6, 0x53, 0x19, 0x6a, 0xc3, 0x0a, 0x99, - 0x10, 0xdd, 0xb1, 0x19, 0x4c, 0x8b, 0xc0, 0x20, 0xc1, 0x01, 0x88, 0xee, 0x34, 0xea, 0x74, 0x92, - 0xff, 0xf6, 0xed, 0x56, 0x8d, 0x6b, 0xbf, 0x62, 0x8c, 0x34, 0x87, 0x8c, 0x4c, 0xe7, 0x12, 0x0b, - 0x7b, 0xf9, 0xcf, 0x19, 0x0a, 0xc8, 0x43, 0x69, 0x6e, 0xe6, 0xdc, 0xba, 0x5b, 0x3e, 0x13, 0x20, - 0x63, 0xc9, 0xe6, 0x7b, 0x13, 0xe0, 0x5c, 0xb5, 0x95, 0xcf, 0x54, 0xdd, 0x21, 0x7d, 0x31, 0xe9, - 0x01, 0x09, 0x92, 0xa0, 0x40, 0x5b, 0x63, 0x9b, 0xf4, 0x05, 0x2f, 0xf4, 0xda, 0x81, 0x71, 0xae, - 0xfe, 0xb8, 0x71, 0x86, 0x67, 0xb9, 0x10, 0x99, 0xe5, 0x00, 0x58, 0x2e, 0x06, 0xc1, 0x32, 0xed, - 0x9b, 0x69, 0x69, 0x86, 0xa5, 0x39, 0x97, 0x6c, 0x69, 0xb2, 0xd8, 0x6b, 0xa3, 0x9b, 0x50, 0x1e, - 0x91, 0x91, 0x69, 0x18, 0x43, 0x85, 0x87, 0x9b, 0x35, 0x66, 0x5a, 0x12, 0xc2, 0x16, 0x8b, 0x3a, - 0xbf, 0xcc, 0xf8, 0xe7, 0xcf, 0x27, 0x45, 0xff, 0x71, 0x13, 0x2c, 0xff, 0x8a, 0x95, 0x4a, 0xc2, - 0x40, 0x06, 0x9d, 0xc2, 0xba, 0x77, 0xfc, 0x95, 0x31, 0x0b, 0x0b, 0xee, 0x86, 0x4e, 0x1a, 0x3f, - 0x6a, 0x93, 0xb0, 0xd8, 0x46, 0x1f, 0xc0, 0xd3, 0x91, 0xd8, 0xe6, 0xb9, 0xce, 0x24, 0x0d, 0x71, - 0x4f, 0x85, 0x43, 0x9c, 0xeb, 0xda, 0x9f, 0xac, 0xec, 0x8f, 0x3c, 0x75, 0x07, 0x94, 0x7d, 0x07, - 0x71, 0xd9, 0xcc, 0xe5, 0xbf, 0x09, 0x65, 0x8b, 0x38, 0xaa, 0xa6, 0x2b, 0xa1, 0xfa, 0x46, 0x89, - 0x0b, 0x45, 0xd5, 0xe4, 0x04, 0x9e, 0x9a, 0x89, 0xcf, 0xd0, 0x7f, 0x43, 0xd1, 0x87, 0x76, 0xe9, - 0x98, 0x52, 0x81, 0x47, 0x7f, 0x7d, 0x5d, 0xf9, 0x0f, 0x69, 0xdf, 0x65, 0x98, 0x50, 0xb7, 0x60, - 0xc5, 0x22, 0xf6, 0x78, 0xc8, 0x29, 0x6e, 0x65, 0xf7, 0xd5, 0x64, 0xc8, 0x8e, 0x4a, 0xc7, 0x43, - 0x07, 0x0b, 0x63, 0xf9, 0x11, 0xac, 0x70, 0x09, 0x5a, 0x83, 0xd5, 0x07, 0x47, 0xf7, 0x8f, 0x8e, - 0xdf, 0x3f, 0xaa, 0xa5, 0x10, 0xc0, 0xca, 0x5e, 0xb3, 0xd9, 0x3a, 0xe9, 0xd4, 0xd2, 0xa8, 0x08, - 0xf9, 0xbd, 0xc6, 0x31, 0xee, 0xd4, 0x32, 0x54, 0x8c, 0x5b, 0xef, 0xb5, 0x9a, 0x9d, 0x5a, 0x16, - 0xad, 0x43, 0x99, 0x3f, 0x2b, 0xfb, 0xc7, 0xf8, 0xff, 0xf7, 0x3a, 0xb5, 0x5c, 0x40, 0x74, 0xda, - 0x3a, 0xba, 0xd7, 0xc2, 0xb5, 0xbc, 0xfc, 0x1a, 0xe5, 0xd0, 0x31, 0x58, 0xd0, 0x67, 0xcb, 0xe9, - 0x00, 0x5b, 0x96, 0x7f, 0x9d, 0xa1, 0xa4, 0x33, 0x0e, 0xe0, 0xa1, 0xf7, 0x22, 0x03, 0xdf, 0x5d, - 0x02, 0x1d, 0x46, 0x46, 0x8f, 0x9e, 0x87, 0x8a, 0x45, 0xce, 0x88, 0xd3, 0x1b, 0x70, 0xc0, 0xc9, - 0x53, 0x66, 0x19, 0x97, 0x85, 0x94, 0x19, 0xd9, 0x5c, 0xed, 0x13, 0xd2, 0x73, 0x14, 0x1e, 0x8b, - 0xf8, 0xa6, 0x2b, 0x52, 0x35, 0x2a, 0x3d, 0xe5, 0x42, 0xf9, 0xe3, 0xa5, 0xe6, 0xb2, 0x08, 0x79, - 0xdc, 0xea, 0xe0, 0x0f, 0x6a, 0x59, 0x84, 0xa0, 0xc2, 0x1e, 0x95, 0xd3, 0xa3, 0xbd, 0x93, 0xd3, - 0xf6, 0x31, 0x9d, 0xcb, 0x0d, 0xa8, 0xba, 0x73, 0xe9, 0x0a, 0xf3, 0xf2, 0x5d, 0x78, 0x3a, 0x06, - 0x9d, 0x2e, 0xa8, 0x18, 0xc8, 0x1f, 0xfa, 0xb9, 0x2b, 0x50, 0x0a, 0xd8, 0x87, 0x4a, 0x04, 0x19, - 0xa6, 0xa7, 0xa9, 0x8b, 0x4f, 0xe5, 0x3d, 0xd4, 0x87, 0xcb, 0x93, 0x60, 0x53, 0xfe, 0x6d, 0x1a, - 0x9e, 0x9d, 0x83, 0x1d, 0xd1, 0xfd, 0xc8, 0x9a, 0xdd, 0x59, 0x06, 0x79, 0x46, 0xb7, 0xec, 0xdd, - 0x44, 0xd3, 0x7c, 0x7a, 0xb8, 0x77, 0xda, 0x0e, 0x6f, 0x59, 0xf9, 0x77, 0xe9, 0xe0, 0xfc, 0x85, - 0x31, 0xf7, 0xbb, 0x91, 0x2e, 0xee, 0x24, 0x05, 0xf0, 0xd1, 0x3d, 0x25, 0x41, 0x81, 0x88, 0xa2, - 0x9f, 0xa8, 0x4d, 0x78, 0x6d, 0xf9, 0xd5, 0xc5, 0x5d, 0xf7, 0xfb, 0x9b, 0x91, 0x3f, 0x82, 0x4a, - 0xb8, 0x28, 0x49, 0x4f, 0x8c, 0x65, 0x8c, 0xf5, 0x3e, 0xeb, 0x64, 0x1e, 0xf3, 0x06, 0x7a, 0x1d, - 0xf2, 0x74, 0x3d, 0x5c, 0xc0, 0x37, 0x1d, 0x5a, 0xe8, 0x7c, 0x06, 0x8a, 0x9a, 0x5c, 0x5b, 0x7e, - 0x02, 0x79, 0x16, 0x24, 0x69, 0xc0, 0x63, 0xe5, 0x45, 0x81, 0xa1, 0xe9, 0x33, 0xfa, 0x08, 0x40, - 0x75, 0x1c, 0x4b, 0xeb, 0x8e, 0x7d, 0xc7, 0x5b, 0xb3, 0x83, 0xec, 0x9e, 0xab, 0xd7, 0xb8, 0x26, - 0xa2, 0xed, 0x15, 0xdf, 0x34, 0x10, 0x71, 0x03, 0x0e, 0xe5, 0x23, 0xa8, 0x84, 0x6d, 0x5d, 0xd4, - 0xc7, 0xfb, 0x10, 0x46, 0x7d, 0x1c, 0xc4, 0x0b, 0xd4, 0xe7, 0x61, 0xc6, 0x2c, 0x2f, 0x25, 0xb3, - 0x86, 0xfc, 0x79, 0x1a, 0x0a, 0x9d, 0x0b, 0x31, 0xb9, 0x31, 0x55, 0x4c, 0xdf, 0x34, 0x13, 0xac, - 0xd9, 0xf1, 0xb2, 0x68, 0xd6, 0x2b, 0xb6, 0xbe, 0xe3, 0xed, 0x84, 0x5c, 0xd2, 0x52, 0x82, 0x5b, - 0x99, 0x12, 0x3b, 0xf4, 0x2d, 0x28, 0x7a, 0x29, 0x92, 0x92, 0x11, 0xb5, 0xdf, 0xb7, 0x88, 0x6d, - 0x8b, 0x30, 0xe7, 0x36, 0x59, 0x51, 0xdc, 0xf8, 0x4c, 0x54, 0x05, 0xb3, 0x98, 0x37, 0xe4, 0x3e, - 0x54, 0x23, 0xf9, 0x15, 0xbd, 0x05, 0xab, 0xe6, 0xb8, 0xab, 0xb8, 0xd3, 0x13, 0xf9, 0xb5, 0xec, - 0xc2, 0xdc, 0x71, 0x77, 0xa8, 0xf5, 0xee, 0x93, 0x4b, 0xb7, 0x33, 0xe6, 0xb8, 0x7b, 0x9f, 0xcf, - 0x22, 0xff, 0x4a, 0x26, 0xf8, 0x95, 0x09, 0x14, 0xdc, 0x4d, 0x81, 0xfe, 0x0f, 0x8a, 0x5e, 0xea, - 0xf6, 0xfe, 0x95, 0xc4, 0xe6, 0x7c, 0xe1, 0xde, 0x37, 0xa1, 0x9c, 0xc9, 0xd6, 0xce, 0x75, 0xd2, - 0x57, 0x7c, 0x3a, 0xc4, 0xbe, 0x56, 0xc0, 0x55, 0xfe, 0xe2, 0xd0, 0xe5, 0x42, 0xf2, 0x3f, 0xd3, - 0x50, 0x70, 0x6b, 0xe2, 0xe8, 0xb5, 0xc0, 0xbe, 0xab, 0xcc, 0xa8, 0x78, 0xb9, 0x8a, 0x7e, 0x5d, - 0x3b, 0xdc, 0xd7, 0xcc, 0xf2, 0x7d, 0x8d, 0xfb, 0x41, 0xe1, 0xfe, 0x2a, 0xca, 0x2d, 0xfd, 0xab, - 0xe8, 0x15, 0x40, 0x8e, 0xe1, 0xa8, 0x43, 0xca, 0xb1, 0x35, 0xfd, 0x5c, 0xe1, 0x93, 0xcd, 0xa1, - 0x5f, 0x8d, 0xbd, 0x79, 0xc8, 0x5e, 0x9c, 0xb0, 0x79, 0xff, 0x79, 0x1a, 0x0a, 0x5e, 0x0e, 0x5f, - 0xb6, 0x4c, 0x7d, 0x15, 0x56, 0x44, 0x9a, 0xe2, 0x75, 0x6a, 0xd1, 0xf2, 0xfe, 0x98, 0xe4, 0x02, - 0x7f, 0x4c, 0x24, 0x28, 0x8c, 0x88, 0xa3, 0xb2, 0x6c, 0xc0, 0x19, 0xa9, 0xd7, 0xbe, 0xfd, 0x26, - 0xac, 0x05, 0xfe, 0x18, 0xd0, 0x93, 0x77, 0xd4, 0x7a, 0xbf, 0x96, 0x92, 0x56, 0x3f, 0xff, 0xf2, - 0x46, 0xf6, 0x88, 0x7c, 0x46, 0xf7, 0x2c, 0x6e, 0x35, 0xdb, 0xad, 0xe6, 0xfd, 0x5a, 0x5a, 0x5a, - 0xfb, 0xfc, 0xcb, 0x1b, 0xab, 0x98, 0xb0, 0x6a, 0xdb, 0xed, 0x36, 0x94, 0x82, 0xab, 0x12, 0x8e, - 0x63, 0x08, 0x2a, 0xf7, 0x1e, 0x9c, 0x1c, 0x1e, 0x34, 0xf7, 0x3a, 0x2d, 0xe5, 0xe1, 0x71, 0xa7, - 0x55, 0x4b, 0xa3, 0xa7, 0x61, 0xe3, 0xf0, 0xe0, 0xdd, 0x76, 0x47, 0x69, 0x1e, 0x1e, 0xb4, 0x8e, - 0x3a, 0xca, 0x5e, 0xa7, 0xb3, 0xd7, 0xbc, 0x5f, 0xcb, 0xec, 0x7e, 0x55, 0x82, 0xea, 0x5e, 0xa3, - 0x79, 0x40, 0xb3, 0xb4, 0xd6, 0x53, 0x59, 0xb9, 0xa0, 0x09, 0x39, 0x56, 0x10, 0x98, 0x7b, 0x4b, - 0x43, 0x9a, 0x5f, 0x87, 0x45, 0xfb, 0x90, 0x67, 0xb5, 0x02, 0x34, 0xff, 0xda, 0x86, 0xb4, 0xa0, - 0x30, 0x4b, 0x3b, 0xc3, 0x8e, 0xc7, 0xdc, 0x7b, 0x1c, 0xd2, 0xfc, 0x3a, 0x2d, 0xc2, 0x50, 0xf4, - 0xb9, 0xc6, 0xe2, 0x7b, 0x0d, 0x52, 0x82, 0x60, 0x83, 0x0e, 0x61, 0xd5, 0xa5, 0x87, 0x8b, 0x6e, - 0x5a, 0x48, 0x0b, 0x0b, 0xa9, 0x74, 0xba, 0x38, 0x8d, 0x9f, 0x7f, 0x6d, 0x44, 0x5a, 0x50, 0x15, - 0x46, 0x07, 0xb0, 0x22, 0xf0, 0xf3, 0x82, 0xdb, 0x13, 0xd2, 0xa2, 0xc2, 0x28, 0x9d, 0x34, 0xbf, - 0x40, 0xb2, 0xf8, 0x32, 0x8c, 0x94, 0xa0, 0xe0, 0x8d, 0x1e, 0x00, 0x04, 0x48, 0x7b, 0x82, 0x5b, - 0x2e, 0x52, 0x92, 0x42, 0x36, 0x3a, 0x86, 0x82, 0xc7, 0xa1, 0x16, 0xde, 0x39, 0x91, 0x16, 0x57, - 0x94, 0xd1, 0x23, 0x28, 0x87, 0xb9, 0x43, 0xb2, 0x9b, 0x24, 0x52, 0xc2, 0x52, 0x31, 0xf5, 0x1f, - 0x26, 0x12, 0xc9, 0x6e, 0x96, 0x48, 0x09, 0x2b, 0xc7, 0xe8, 0x13, 0x58, 0x9f, 0x06, 0xfa, 0xc9, - 0x2f, 0x9a, 0x48, 0x4b, 0xd4, 0x92, 0xd1, 0x08, 0xd0, 0x0c, 0x82, 0xb0, 0xc4, 0xbd, 0x13, 0x69, - 0x99, 0xd2, 0x32, 0xea, 0x43, 0x35, 0x8a, 0xba, 0x93, 0xde, 0x43, 0x91, 0x12, 0x97, 0x99, 0xf9, - 0x57, 0xc2, 0xd8, 0x34, 0xe9, 0xbd, 0x14, 0x29, 0x71, 0xd5, 0x99, 0x1e, 0x87, 0x00, 0x0f, 0x48, - 0x70, 0x4f, 0x45, 0x4a, 0x52, 0x7f, 0x46, 0x26, 0x6c, 0xcc, 0xc2, 0xff, 0xcb, 0x5c, 0x5b, 0x91, - 0x96, 0x2a, 0x4b, 0x37, 0x5a, 0x5f, 0x7f, 0xb7, 0x99, 0xfe, 0xe6, 0xbb, 0xcd, 0xf4, 0x5f, 0xbf, - 0xdb, 0x4c, 0x7f, 0xf1, 0xfd, 0x66, 0xea, 0x9b, 0xef, 0x37, 0x53, 0x7f, 0xfa, 0x7e, 0x33, 0xf5, - 0xd3, 0x97, 0xcf, 0x35, 0x67, 0x30, 0xee, 0x6e, 0xf7, 0x8c, 0xd1, 0x4e, 0xf0, 0x96, 0xe1, 0xac, - 0x9b, 0x8f, 0xdd, 0x15, 0x96, 0xe9, 0xef, 0xfc, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x2f, 0xe2, 0x4c, - 0x31, 0x19, 0x29, 0x00, 0x00, + // 3233 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcb, 0x6f, 0x23, 0xc7, + 0xd1, 0xe7, 0xfb, 0x51, 0x14, 0x1f, 0x6a, 0xc9, 0x32, 0x77, 0xbc, 0x2b, 0xad, 0x67, 0x61, 0x7b, + 0xbd, 0xb6, 0xa5, 0xcf, 0xda, 0xcf, 0xce, 0x1a, 0x76, 0x62, 0x4b, 0x5c, 0x2a, 0x94, 0x57, 0x96, + 0x94, 0x11, 0xb5, 0x86, 0x13, 0x7b, 0xc7, 0x43, 0xb2, 0x45, 0x8e, 0x97, 0x9c, 0x19, 0xcf, 0x0c, + 0x69, 0x69, 0x8f, 0x79, 0x5c, 0x8c, 0x1c, 0x7c, 0x0c, 0x10, 0xf8, 0xe6, 0x7f, 0x20, 0x40, 0x0e, + 0x39, 0xe5, 0x14, 0x20, 0x06, 0x92, 0x83, 0x8f, 0x39, 0x04, 0x4e, 0x60, 0xdf, 0x72, 0xcd, 0x21, + 0xa7, 0x00, 0x41, 0x3f, 0xe6, 0x45, 0x72, 0xc8, 0x61, 0xb4, 0x3e, 0xe5, 0xd6, 0x5d, 0x53, 0x55, + 0xd3, 0x5d, 0xdd, 0x5d, 0x55, 0xbf, 0xae, 0x86, 0xa7, 0x6c, 0xac, 0x75, 0xb0, 0x39, 0x50, 0x35, + 0x7b, 0x4b, 0x69, 0xb5, 0xd5, 0x2d, 0xfb, 0xc2, 0xc0, 0xd6, 0xa6, 0x61, 0xea, 0xb6, 0x8e, 0xca, + 0xde, 0xc7, 0x4d, 0xf2, 0x51, 0xb8, 0xe6, 0xe3, 0x6e, 0x9b, 0x17, 0x86, 0xad, 0x6f, 0x19, 0xa6, + 0xae, 0x9f, 0x31, 0x7e, 0xe1, 0xaa, 0xef, 0x33, 0xd5, 0xe3, 0xd7, 0x16, 0xf8, 0xca, 0x85, 0x1f, + 0xe2, 0x0b, 0xe7, 0xeb, 0xb5, 0x09, 0x59, 0x43, 0x31, 0x95, 0x81, 0xf3, 0x79, 0xa3, 0xab, 0xeb, + 0xdd, 0x3e, 0xde, 0xa2, 0xbd, 0xd6, 0xf0, 0x6c, 0xcb, 0x56, 0x07, 0xd8, 0xb2, 0x95, 0x81, 0xc1, + 0x19, 0x56, 0xbb, 0x7a, 0x57, 0xa7, 0xcd, 0x2d, 0xd2, 0x62, 0x54, 0xf1, 0x9f, 0x00, 0x59, 0x09, + 0x7f, 0x3c, 0xc4, 0x96, 0x8d, 0xb6, 0x21, 0x85, 0xdb, 0x3d, 0xbd, 0x1a, 0xbf, 0x1e, 0xbf, 0x59, + 0xd8, 0xbe, 0xba, 0x39, 0x36, 0xb9, 0x4d, 0xce, 0x57, 0x6f, 0xf7, 0xf4, 0x46, 0x4c, 0xa2, 0xbc, + 0xe8, 0x15, 0x48, 0x9f, 0xf5, 0x87, 0x56, 0xaf, 0x9a, 0xa0, 0x42, 0xd7, 0xc2, 0x84, 0xf6, 0x08, + 0x53, 0x23, 0x26, 0x31, 0x6e, 0xf2, 0x2b, 0x55, 0x3b, 0xd3, 0xab, 0xc9, 0xd9, 0xbf, 0xda, 0xd7, + 0xce, 0xe8, 0xaf, 0x08, 0x2f, 0xda, 0x05, 0x50, 0x35, 0xd5, 0x96, 0xdb, 0x3d, 0x45, 0xd5, 0xaa, + 0x29, 0x2a, 0xf9, 0x74, 0xb8, 0xa4, 0x6a, 0xd7, 0x08, 0x63, 0x23, 0x26, 0xe5, 0x55, 0xa7, 0x43, + 0x86, 0xfb, 0xf1, 0x10, 0x9b, 0x17, 0xd5, 0xf4, 0xec, 0xe1, 0xfe, 0x88, 0x30, 0x91, 0xe1, 0x52, + 0x6e, 0x54, 0x87, 0x42, 0x0b, 0x77, 0x55, 0x4d, 0x6e, 0xf5, 0xf5, 0xf6, 0xc3, 0x6a, 0x86, 0x0a, + 0x8b, 0x61, 0xc2, 0xbb, 0x84, 0x75, 0x97, 0x70, 0x36, 0x62, 0x12, 0xb4, 0xdc, 0x1e, 0x7a, 0x03, + 0x72, 0xed, 0x1e, 0x6e, 0x3f, 0x94, 0xed, 0xf3, 0x6a, 0x96, 0xea, 0xd8, 0x08, 0xd3, 0x51, 0x23, + 0x7c, 0xcd, 0xf3, 0x46, 0x4c, 0xca, 0xb6, 0x59, 0x93, 0xcc, 0xbf, 0x83, 0xfb, 0xea, 0x08, 0x9b, + 0x44, 0x3e, 0x37, 0x7b, 0xfe, 0x77, 0x19, 0x27, 0xd5, 0x90, 0xef, 0x38, 0x1d, 0xf4, 0x26, 0xe4, + 0xb1, 0xd6, 0xe1, 0xd3, 0xc8, 0x53, 0x15, 0xd7, 0x43, 0xd7, 0x59, 0xeb, 0x38, 0x93, 0xc8, 0x61, + 0xde, 0x46, 0x77, 0x20, 0xd3, 0xd6, 0x07, 0x03, 0xd5, 0xae, 0x02, 0x95, 0x5e, 0x0f, 0x9d, 0x00, + 0xe5, 0x6a, 0xc4, 0x24, 0xce, 0x8f, 0x0e, 0xa1, 0xd4, 0x57, 0x2d, 0x5b, 0xb6, 0x34, 0xc5, 0xb0, + 0x7a, 0xba, 0x6d, 0x55, 0x0b, 0x54, 0xc3, 0x33, 0x61, 0x1a, 0x0e, 0x54, 0xcb, 0x3e, 0x71, 0x98, + 0x1b, 0x31, 0xa9, 0xd8, 0xf7, 0x13, 0x88, 0x3e, 0xfd, 0xec, 0x0c, 0x9b, 0xae, 0xc2, 0xea, 0xd2, + 0x6c, 0x7d, 0x47, 0x84, 0xdb, 0x91, 0x27, 0xfa, 0x74, 0x3f, 0x01, 0xfd, 0x04, 0x56, 0xfa, 0xba, + 0xd2, 0x71, 0xd5, 0xc9, 0xed, 0xde, 0x50, 0x7b, 0x58, 0x2d, 0x52, 0xa5, 0xcf, 0x87, 0x0e, 0x52, + 0x57, 0x3a, 0x8e, 0x8a, 0x1a, 0x11, 0x68, 0xc4, 0xa4, 0xe5, 0xfe, 0x38, 0x11, 0x3d, 0x80, 0x55, + 0xc5, 0x30, 0xfa, 0x17, 0xe3, 0xda, 0x4b, 0x54, 0xfb, 0xad, 0x30, 0xed, 0x3b, 0x44, 0x66, 0x5c, + 0x3d, 0x52, 0x26, 0xa8, 0xa8, 0x09, 0x15, 0xc3, 0xc4, 0x86, 0x62, 0x62, 0xd9, 0x30, 0x75, 0x43, + 0xb7, 0x94, 0x7e, 0xb5, 0x4c, 0x75, 0x3f, 0x17, 0xa6, 0xfb, 0x98, 0xf1, 0x1f, 0x73, 0xf6, 0x46, + 0x4c, 0x2a, 0x1b, 0x41, 0x12, 0xd3, 0xaa, 0xb7, 0xb1, 0x65, 0x79, 0x5a, 0x2b, 0xf3, 0xb4, 0x52, + 0xfe, 0xa0, 0xd6, 0x00, 0x89, 0x1c, 0x26, 0x7c, 0x4e, 0xc4, 0xe5, 0x91, 0x6e, 0xe3, 0xea, 0xf2, + 0xec, 0xc3, 0x54, 0xa7, 0xac, 0xf7, 0x75, 0x1b, 0x93, 0xc3, 0x84, 0xdd, 0x1e, 0x52, 0xe0, 0x89, + 0x11, 0x36, 0xd5, 0xb3, 0x0b, 0xaa, 0x46, 0xa6, 0x5f, 0x2c, 0x55, 0xd7, 0xaa, 0x88, 0x2a, 0x7c, + 0x21, 0x4c, 0xe1, 0x7d, 0x2a, 0x44, 0x54, 0xd4, 0x1d, 0x91, 0x46, 0x4c, 0x5a, 0x19, 0x4d, 0x92, + 0xc9, 0x16, 0x3b, 0x53, 0x35, 0xa5, 0xaf, 0x3e, 0xc2, 0xfc, 0xc8, 0xac, 0xcc, 0xde, 0x62, 0x7b, + 0x9c, 0xdb, 0x39, 0x37, 0xc5, 0x33, 0x3f, 0x61, 0x37, 0x0b, 0xe9, 0x91, 0xd2, 0x1f, 0x62, 0xf1, + 0x39, 0x28, 0xf8, 0x9c, 0x29, 0xaa, 0x42, 0x76, 0x80, 0x2d, 0x4b, 0xe9, 0x62, 0xea, 0x7b, 0xf3, + 0x92, 0xd3, 0x15, 0x7f, 0x9e, 0x80, 0xe5, 0x09, 0xaf, 0x82, 0x10, 0xa4, 0x7a, 0x8a, 0xd5, 0xa3, + 0xcc, 0x4b, 0x12, 0x6d, 0xa3, 0x57, 0x21, 0xd3, 0xc3, 0x4a, 0x07, 0x9b, 0xdc, 0x13, 0x57, 0xfd, + 0x63, 0x64, 0x51, 0xa6, 0x41, 0xbf, 0xef, 0xa6, 0xbe, 0xfc, 0x7a, 0x23, 0x26, 0x71, 0x6e, 0x74, + 0x04, 0x95, 0xbe, 0x62, 0xd9, 0x32, 0x3b, 0xa5, 0xb2, 0xcf, 0x2b, 0x4f, 0xfa, 0xa6, 0x03, 0xc5, + 0x39, 0xd7, 0xc4, 0x31, 0x73, 0x45, 0xa5, 0x7e, 0x80, 0x8a, 0x24, 0x58, 0x6d, 0x5d, 0x3c, 0x52, + 0x34, 0x5b, 0xd5, 0xb0, 0x3c, 0x52, 0xfa, 0x6a, 0x47, 0xb1, 0x75, 0xd3, 0xaa, 0xa6, 0xae, 0x27, + 0x6f, 0x16, 0xb6, 0xaf, 0x4c, 0x28, 0xad, 0x8f, 0xd4, 0x0e, 0xd6, 0xda, 0x98, 0xab, 0x5b, 0x71, + 0x85, 0xef, 0xbb, 0xb2, 0x62, 0x09, 0x96, 0xfc, 0x71, 0x44, 0xfc, 0x2c, 0xee, 0x1a, 0x90, 0xfe, + 0xb3, 0x0a, 0xd9, 0x11, 0x36, 0xe9, 0xea, 0x73, 0x03, 0xf2, 0x2e, 0xba, 0x01, 0x45, 0xba, 0x72, + 0xb2, 0xf3, 0x9d, 0x58, 0x27, 0x25, 0x2d, 0x51, 0xe2, 0x7d, 0xce, 0xb4, 0x01, 0x05, 0x63, 0xdb, + 0x70, 0x59, 0x92, 0x94, 0x05, 0x8c, 0x6d, 0xc3, 0x61, 0x78, 0x1a, 0x96, 0xc8, 0x58, 0x5d, 0x8e, + 0x14, 0xfd, 0x49, 0x81, 0xd0, 0x38, 0x8b, 0xf8, 0xe7, 0x04, 0x54, 0xc6, 0x63, 0x0f, 0xba, 0x03, + 0x29, 0x12, 0x86, 0x79, 0x44, 0x15, 0x36, 0x59, 0x8c, 0xde, 0x74, 0x62, 0xf4, 0x66, 0xd3, 0x89, + 0xd1, 0xbb, 0x39, 0x32, 0xf9, 0xcf, 0xfe, 0xb6, 0x11, 0x97, 0xa8, 0x04, 0xba, 0x42, 0x42, 0x85, + 0xa2, 0x6a, 0xb2, 0xda, 0xa1, 0x43, 0xce, 0x93, 0x38, 0xa0, 0xa8, 0xda, 0x7e, 0x07, 0x1d, 0x40, + 0xa5, 0xad, 0x6b, 0x16, 0xd6, 0xac, 0xa1, 0x25, 0xb3, 0x1c, 0x80, 0xaf, 0xd8, 0xd3, 0x93, 0x6b, + 0x5e, 0x73, 0x38, 0x8f, 0x29, 0xa3, 0x54, 0x6e, 0x07, 0x09, 0x68, 0x0f, 0x60, 0x62, 0x91, 0x26, + 0x43, 0x82, 0xbb, 0x16, 0xa7, 0x46, 0x47, 0xb1, 0x9d, 0xb5, 0xf2, 0x49, 0xa2, 0x67, 0xa1, 0xac, + 0x18, 0x86, 0x6c, 0xd9, 0x8a, 0x8d, 0xe5, 0xd6, 0x85, 0x8d, 0x2d, 0x1a, 0x63, 0x97, 0xa4, 0xa2, + 0x62, 0x18, 0x27, 0x84, 0xba, 0x4b, 0x88, 0xe8, 0x19, 0x28, 0x91, 0x70, 0xac, 0x2a, 0x7d, 0xb9, + 0x87, 0xd5, 0x6e, 0xcf, 0xa6, 0xd1, 0x34, 0x29, 0x15, 0x39, 0xb5, 0x41, 0x89, 0x62, 0xc7, 0x5d, + 0x71, 0x1a, 0x8a, 0xc9, 0x96, 0xef, 0x28, 0xb6, 0xe2, 0x6c, 0x79, 0xd2, 0x26, 0x34, 0x43, 0xb1, + 0x7b, 0xdc, 0x3e, 0xb4, 0x8d, 0xd6, 0xc8, 0x31, 0xa0, 0x6a, 0x93, 0x54, 0x2d, 0xef, 0xa1, 0x55, + 0x48, 0x1b, 0xa6, 0x3e, 0xc2, 0x74, 0xe9, 0x72, 0x12, 0xeb, 0x88, 0xa2, 0xbb, 0x66, 0x6e, 0xbc, + 0x44, 0x25, 0x48, 0xd8, 0xe7, 0xfc, 0x3f, 0x09, 0xfb, 0x5c, 0x7c, 0x1e, 0xca, 0x63, 0x01, 0xd1, + 0xf7, 0x93, 0xb8, 0xff, 0x27, 0xa2, 0x04, 0xa5, 0x60, 0xf8, 0x1e, 0x57, 0x86, 0xfe, 0x0f, 0x52, + 0x64, 0x5d, 0xe8, 0x90, 0x4b, 0x53, 0xf2, 0x1e, 0x2e, 0xd7, 0xbc, 0x30, 0xb0, 0x44, 0x39, 0xc5, + 0x32, 0x14, 0x03, 0x11, 0x55, 0x5c, 0x83, 0xd5, 0x69, 0x01, 0x52, 0xec, 0xb9, 0xf4, 0x40, 0xa0, + 0x43, 0xaf, 0x40, 0xce, 0x8d, 0x90, 0x6c, 0x1f, 0x4e, 0x9e, 0x41, 0x87, 0x59, 0x72, 0x59, 0xc9, + 0x06, 0x24, 0xeb, 0x49, 0xfd, 0x4c, 0x82, 0x8e, 0x3f, 0xab, 0x18, 0x46, 0x43, 0xb1, 0x7a, 0xe2, + 0x87, 0x50, 0x0d, 0x8b, 0x7e, 0x63, 0xa6, 0x49, 0xb9, 0xf6, 0x5f, 0x83, 0xcc, 0x99, 0x6e, 0x0e, + 0x14, 0x9b, 0x2a, 0x2b, 0x4a, 0xbc, 0x47, 0xd6, 0x85, 0x45, 0xc2, 0x24, 0x25, 0xb3, 0x8e, 0x28, + 0xc3, 0x95, 0xd0, 0x08, 0x48, 0x44, 0x54, 0xad, 0x83, 0x99, 0x59, 0x8b, 0x12, 0xeb, 0x78, 0x8a, + 0xd8, 0x60, 0x59, 0x87, 0xfc, 0xd6, 0xa2, 0x73, 0xa5, 0xfa, 0xf3, 0x12, 0xef, 0x89, 0x32, 0xac, + 0x4d, 0x0f, 0x83, 0xe8, 0x1a, 0x00, 0x73, 0x18, 0x7c, 0xbb, 0x25, 0x6f, 0x2e, 0x49, 0x79, 0x4a, + 0xb9, 0x4b, 0xf6, 0xdc, 0xb3, 0x50, 0xf6, 0x3e, 0xcb, 0x96, 0xfa, 0x88, 0xad, 0x65, 0x52, 0x2a, + 0xba, 0x3c, 0x27, 0xea, 0x23, 0x2c, 0xbe, 0xe9, 0xfa, 0x6d, 0x2f, 0x80, 0xa1, 0x5b, 0x90, 0xa2, + 0x21, 0x8f, 0x2d, 0xc3, 0xda, 0xe4, 0x69, 0x25, 0x5c, 0x12, 0xe5, 0x11, 0x1b, 0x20, 0x84, 0x07, + 0xac, 0x85, 0x34, 0xfd, 0x3a, 0xe1, 0x9b, 0x6c, 0x30, 0x14, 0x3f, 0xce, 0x40, 0x52, 0x81, 0xa4, + 0x7d, 0x4e, 0x3c, 0x11, 0xb1, 0x18, 0x69, 0x4e, 0x0d, 0x2d, 0xa9, 0xef, 0x22, 0xb4, 0xa4, 0x2f, + 0x11, 0x5a, 0x7e, 0x93, 0x70, 0xcf, 0x4d, 0x20, 0x7a, 0x3b, 0xf3, 0x89, 0x7b, 0xf3, 0x71, 0xac, + 0x95, 0xf0, 0x59, 0x2b, 0xcc, 0xdf, 0x78, 0x56, 0x4c, 0x5d, 0x3a, 0x1c, 0xa7, 0xbf, 0x0b, 0x9b, + 0x65, 0x2e, 0x61, 0xb3, 0x3f, 0x15, 0x20, 0x27, 0x61, 0xcb, 0x20, 0xa1, 0x04, 0xed, 0x42, 0x1e, + 0x9f, 0xb7, 0xb1, 0x61, 0x3b, 0xd1, 0x77, 0x7a, 0x32, 0xc7, 0xb8, 0xeb, 0x0e, 0x27, 0x81, 0x25, + 0xae, 0x18, 0xba, 0xcd, 0x91, 0x67, 0x38, 0x88, 0xe4, 0xe2, 0x7e, 0xe8, 0xf9, 0xaa, 0x03, 0x3d, + 0x93, 0xa1, 0x48, 0x84, 0x49, 0x8d, 0x61, 0xcf, 0xdb, 0x1c, 0x7b, 0xa6, 0xe6, 0xfc, 0x2c, 0x00, + 0x3e, 0x6b, 0x01, 0xf0, 0x99, 0x9e, 0x33, 0xcd, 0x10, 0xf4, 0xf9, 0xaa, 0x83, 0x3e, 0x33, 0x73, + 0x46, 0x3c, 0x06, 0x3f, 0xf7, 0x82, 0xf0, 0x93, 0x41, 0xc7, 0x1b, 0xa1, 0xd2, 0xa1, 0xf8, 0xf3, + 0xfb, 0x3e, 0xfc, 0x99, 0x0b, 0x05, 0x7f, 0x4c, 0xc9, 0x14, 0x00, 0x5a, 0x0b, 0x00, 0xd0, 0xfc, + 0x1c, 0x1b, 0x84, 0x20, 0xd0, 0xb7, 0xfc, 0x08, 0x14, 0x42, 0x41, 0x2c, 0x5f, 0xef, 0x69, 0x10, + 0xf4, 0x35, 0x17, 0x82, 0x16, 0x42, 0x31, 0x34, 0x9f, 0xc3, 0x38, 0x06, 0x3d, 0x9a, 0xc0, 0xa0, + 0x0c, 0x33, 0x3e, 0x1b, 0xaa, 0x62, 0x0e, 0x08, 0x3d, 0x9a, 0x00, 0xa1, 0xc5, 0x39, 0x0a, 0xe7, + 0xa0, 0xd0, 0xf7, 0xa7, 0xa3, 0xd0, 0x70, 0x9c, 0xc8, 0x87, 0x19, 0x0d, 0x86, 0xca, 0x21, 0x30, + 0xb4, 0x1c, 0x0a, 0x99, 0x98, 0xfa, 0xc8, 0x38, 0xf4, 0x74, 0x0a, 0x0e, 0x65, 0x88, 0xf1, 0x66, + 0xa8, 0xf2, 0x08, 0x40, 0xf4, 0x74, 0x0a, 0x10, 0x5d, 0x9e, 0xab, 0x76, 0x2e, 0x12, 0xdd, 0x0b, + 0x22, 0x51, 0x34, 0xe7, 0x5c, 0x85, 0x42, 0xd1, 0x56, 0x18, 0x14, 0x65, 0x70, 0xf1, 0xc5, 0x50, + 0x8d, 0x0b, 0x60, 0xd1, 0xa3, 0x09, 0x2c, 0xba, 0x3a, 0x67, 0xa7, 0x45, 0x05, 0xa3, 0xcf, 0x93, + 0x54, 0x65, 0xcc, 0x3d, 0x93, 0x74, 0x0a, 0x9b, 0xa6, 0x6e, 0x72, 0x3c, 0xc5, 0x3a, 0xe2, 0x4d, + 0x92, 0x95, 0x7b, 0xae, 0x78, 0x06, 0x70, 0xa5, 0x69, 0xab, 0xcf, 0xfd, 0x8a, 0xbf, 0x8b, 0x7b, + 0xb2, 0x34, 0x30, 0xf9, 0x33, 0xfa, 0x3c, 0xcf, 0xe8, 0x7d, 0x38, 0x2e, 0x11, 0xc4, 0x71, 0x1b, + 0x50, 0x20, 0xe9, 0xe8, 0x18, 0x44, 0x53, 0x0c, 0x17, 0xa2, 0xdd, 0x82, 0x65, 0x1a, 0x38, 0x59, + 0x76, 0xc6, 0x63, 0x72, 0x8a, 0xc6, 0xe4, 0x32, 0xf9, 0xc0, 0xac, 0xc0, 0x82, 0xf3, 0x4b, 0xb0, + 0xe2, 0xe3, 0x75, 0xd3, 0x5c, 0x86, 0x57, 0x2a, 0x2e, 0xf7, 0x0e, 0xcf, 0x77, 0xff, 0x10, 0xf7, + 0x2c, 0xe4, 0x61, 0xbb, 0x69, 0x30, 0x2c, 0xfe, 0x98, 0x60, 0x58, 0xe2, 0xbf, 0x86, 0x61, 0xfe, + 0xb4, 0x3d, 0x19, 0x4c, 0xdb, 0xff, 0x15, 0xf7, 0xd6, 0xc4, 0x05, 0x55, 0x6d, 0xbd, 0x83, 0x79, + 0x22, 0x4d, 0xdb, 0x24, 0xed, 0xe9, 0xeb, 0x5d, 0x9e, 0x2e, 0x93, 0x26, 0xe1, 0x72, 0xe3, 0x65, + 0x9e, 0x87, 0x43, 0x37, 0x07, 0x4f, 0x53, 0x0b, 0xf3, 0x1c, 0xbc, 0x02, 0xc9, 0x87, 0x98, 0x45, + 0xb7, 0x25, 0x89, 0x34, 0x09, 0x1f, 0xdd, 0x64, 0x34, 0x66, 0x2d, 0x49, 0xac, 0x83, 0xee, 0x40, + 0x9e, 0xde, 0x8a, 0xcb, 0xba, 0x61, 0xf1, 0x40, 0xf4, 0x94, 0x7f, 0xae, 0xec, 0xf2, 0x7b, 0xf3, + 0x98, 0xf0, 0x1c, 0x19, 0x96, 0x94, 0x33, 0x78, 0xcb, 0x97, 0x6e, 0xe5, 0x03, 0xe9, 0xd6, 0x55, + 0xc8, 0x93, 0xd1, 0x5b, 0x86, 0xd2, 0xc6, 0x34, 0xaa, 0xe4, 0x25, 0x8f, 0x20, 0x3e, 0x00, 0x34, + 0x19, 0x1b, 0x51, 0x03, 0x32, 0x78, 0x84, 0x35, 0x9b, 0xe5, 0x78, 0x63, 0x59, 0x34, 0xcf, 0x85, + 0xb0, 0x66, 0xef, 0x56, 0x89, 0x91, 0xff, 0xf1, 0xf5, 0x46, 0x85, 0x71, 0xbf, 0xa8, 0x0f, 0x54, + 0x1b, 0x0f, 0x0c, 0xfb, 0x42, 0xe2, 0xf2, 0xe2, 0x5f, 0x13, 0x04, 0x23, 0x06, 0xe2, 0xe6, 0x54, + 0xdb, 0x3a, 0x5b, 0x3e, 0xe1, 0x03, 0xb1, 0xd1, 0xec, 0xbd, 0x0e, 0xd0, 0x55, 0x2c, 0xf9, 0x13, + 0x45, 0xb3, 0x71, 0x87, 0x1b, 0xdd, 0x47, 0x41, 0x02, 0xe4, 0x48, 0x6f, 0x68, 0xe1, 0x0e, 0xc7, + 0xd3, 0x6e, 0xdf, 0x37, 0xcf, 0xec, 0xe5, 0xe6, 0x19, 0xb4, 0x72, 0x6e, 0xcc, 0xca, 0x3e, 0xac, + 0x95, 0xf7, 0x63, 0x2d, 0x32, 0x36, 0xc3, 0x54, 0x75, 0x53, 0xb5, 0x2f, 0xe8, 0xd2, 0x24, 0x25, + 0xb7, 0x8f, 0x6e, 0x40, 0x71, 0x80, 0x07, 0x86, 0xae, 0xf7, 0x65, 0xe6, 0x6e, 0x0a, 0x54, 0x74, + 0x89, 0x13, 0xeb, 0xd4, 0xeb, 0xfc, 0x22, 0xe1, 0x9d, 0x3f, 0x0f, 0xa7, 0xff, 0xcf, 0x19, 0x58, + 0xfc, 0x25, 0xbd, 0x62, 0x0a, 0x66, 0x46, 0xe8, 0x04, 0x96, 0xdd, 0xe3, 0x2f, 0x0f, 0xa9, 0x5b, + 0x70, 0x36, 0x74, 0x54, 0xff, 0x51, 0x19, 0x05, 0xc9, 0x16, 0x7a, 0x0f, 0x9e, 0x1c, 0xf3, 0x6d, + 0xae, 0xea, 0x44, 0x54, 0x17, 0xf7, 0x44, 0xd0, 0xc5, 0x39, 0xaa, 0x3d, 0x63, 0x25, 0x2f, 0x79, + 0xea, 0xf6, 0xa1, 0x14, 0x4c, 0xf4, 0xa6, 0x2e, 0xff, 0x0d, 0x28, 0x9a, 0xd8, 0x56, 0x54, 0x4d, + 0x0e, 0xe0, 0xb4, 0x25, 0x46, 0xe4, 0xb7, 0x4d, 0xc7, 0xf0, 0xc4, 0xd4, 0x84, 0x0f, 0x7d, 0x0f, + 0xf2, 0x5e, 0xae, 0x18, 0x0f, 0x81, 0x4c, 0xee, 0xed, 0x89, 0xc7, 0x2b, 0xfe, 0x3e, 0xee, 0xa9, + 0x0c, 0xde, 0xc7, 0xd4, 0x21, 0x63, 0x62, 0x6b, 0xd8, 0x67, 0x37, 0x24, 0xa5, 0xed, 0x97, 0xa2, + 0xa5, 0x8a, 0x84, 0x3a, 0xec, 0xdb, 0x12, 0x17, 0x16, 0x1f, 0x40, 0x86, 0x51, 0x50, 0x01, 0xb2, + 0xa7, 0x87, 0xf7, 0x0e, 0x8f, 0xde, 0x3d, 0xac, 0xc4, 0x10, 0x40, 0x66, 0xa7, 0x56, 0xab, 0x1f, + 0x37, 0x2b, 0x71, 0x94, 0x87, 0xf4, 0xce, 0xee, 0x91, 0xd4, 0xac, 0x24, 0x08, 0x59, 0xaa, 0xbf, + 0x5d, 0xaf, 0x35, 0x2b, 0x49, 0xb4, 0x0c, 0x45, 0xd6, 0x96, 0xf7, 0x8e, 0xa4, 0x77, 0x76, 0x9a, + 0x95, 0x94, 0x8f, 0x74, 0x52, 0x3f, 0xbc, 0x5b, 0x97, 0x2a, 0x69, 0xf1, 0x65, 0xb8, 0x12, 0x9a, + 0x5c, 0x7a, 0x97, 0x2d, 0x71, 0xdf, 0x65, 0x8b, 0xf8, 0xab, 0x04, 0x08, 0xe1, 0x19, 0x23, 0x7a, + 0x7b, 0x6c, 0xe2, 0xdb, 0x0b, 0xa4, 0x9b, 0x63, 0xb3, 0x47, 0xcf, 0x40, 0xc9, 0xc4, 0x67, 0xd8, + 0x6e, 0xf7, 0x58, 0x06, 0xcb, 0x42, 0x66, 0x51, 0x2a, 0x72, 0x2a, 0x15, 0xb2, 0x18, 0xdb, 0x47, + 0xb8, 0x6d, 0xcb, 0xcc, 0x17, 0xb1, 0x4d, 0x97, 0x27, 0x6c, 0x84, 0x7a, 0xc2, 0x88, 0xe2, 0x87, + 0x0b, 0xd9, 0x32, 0x0f, 0x69, 0xa9, 0xde, 0x94, 0xde, 0xab, 0x24, 0x11, 0x82, 0x12, 0x6d, 0xca, + 0x27, 0x87, 0x3b, 0xc7, 0x27, 0x8d, 0x23, 0x62, 0xcb, 0x15, 0x28, 0x3b, 0xb6, 0x74, 0x88, 0x69, + 0xf1, 0x0e, 0x3c, 0x19, 0x92, 0xee, 0xce, 0xb9, 0x70, 0x12, 0xdf, 0xf7, 0x62, 0x97, 0xef, 0x26, + 0x69, 0x0f, 0x4a, 0x63, 0xa9, 0x66, 0x7c, 0x12, 0x0b, 0x79, 0x37, 0x41, 0x6e, 0x1a, 0x29, 0x15, + 0x47, 0xfe, 0xae, 0xf8, 0x45, 0x1c, 0x9e, 0x9a, 0x91, 0x8c, 0xa2, 0x7b, 0x63, 0x6b, 0x76, 0x7b, + 0x91, 0x54, 0x76, 0x7c, 0xcb, 0xde, 0x89, 0x64, 0xe6, 0x93, 0x83, 0x9d, 0x93, 0x46, 0x70, 0xcb, + 0x8a, 0xbf, 0x4d, 0xf8, 0xed, 0x17, 0x4c, 0xe2, 0xd7, 0x20, 0xa3, 0xb4, 0x49, 0xda, 0x4a, 0x87, + 0x98, 0x93, 0x78, 0x6f, 0xc6, 0x05, 0x26, 0x7a, 0x03, 0xc0, 0x3e, 0x97, 0xd9, 0xa8, 0x1c, 0x3f, + 0x34, 0x79, 0x0f, 0x50, 0x3f, 0xc7, 0xed, 0xe6, 0x39, 0x9f, 0x43, 0xde, 0xe6, 0x2d, 0x0b, 0xbd, + 0x33, 0xcd, 0xe3, 0x46, 0xbc, 0x38, 0x5f, 0xcc, 0xd7, 0xa6, 0x2f, 0xe7, 0x6b, 0xc5, 0x3f, 0x26, + 0x3c, 0x27, 0x14, 0xbc, 0xdc, 0xfa, 0x7f, 0xef, 0x72, 0x2b, 0x12, 0x86, 0x67, 0x17, 0x60, 0x53, + 0x63, 0x4d, 0xe2, 0xbb, 0x8b, 0x35, 0xc9, 0xc7, 0x16, 0x6b, 0x52, 0x97, 0x8c, 0x35, 0x1f, 0x40, + 0x29, 0x78, 0xdb, 0x46, 0x5c, 0xa0, 0xa9, 0x0f, 0xb5, 0x0e, 0xdd, 0x75, 0x69, 0x89, 0x75, 0xd0, + 0x2b, 0x90, 0x26, 0x07, 0xcc, 0xb1, 0xca, 0x64, 0xac, 0x20, 0x07, 0xc4, 0x77, 0x5b, 0xc7, 0xb8, + 0xc5, 0x47, 0x90, 0xa6, 0x23, 0x21, 0x11, 0x8c, 0xd6, 0x07, 0x38, 0x28, 0x22, 0x6d, 0xf4, 0x01, + 0x80, 0x62, 0xdb, 0xa6, 0xda, 0x1a, 0x7a, 0x8a, 0x37, 0xa6, 0xcf, 0x64, 0xc7, 0xe1, 0xdb, 0xbd, + 0xca, 0xa7, 0xb4, 0xea, 0x89, 0xfa, 0xa6, 0xe5, 0x53, 0x28, 0x1e, 0x42, 0x29, 0x28, 0xeb, 0xa4, + 0xf1, 0x6c, 0x0c, 0xc1, 0x34, 0x9e, 0xa1, 0x32, 0x9e, 0xc6, 0xbb, 0x20, 0x20, 0xc9, 0x6a, 0x2a, + 0xb4, 0x23, 0xfe, 0x2c, 0x01, 0x4b, 0xfe, 0xa3, 0xf3, 0x98, 0x13, 0xb5, 0x6b, 0x53, 0x12, 0xb5, + 0x7c, 0x57, 0xb1, 0xde, 0x65, 0x79, 0xda, 0x95, 0x89, 0x3c, 0x2d, 0xdb, 0x55, 0xac, 0x53, 0x92, + 0xa6, 0xbd, 0x03, 0x79, 0xfb, 0x5c, 0xbe, 0x64, 0xa6, 0x96, 0xb3, 0xcf, 0xeb, 0x51, 0x72, 0xb5, + 0x4f, 0xe3, 0x90, 0x73, 0x2d, 0x10, 0x52, 0x2f, 0xf2, 0x0c, 0x98, 0xf0, 0x57, 0x32, 0x58, 0xcd, + 0x28, 0xe9, 0xd6, 0x8c, 0xde, 0x72, 0x7d, 0x70, 0x2a, 0xea, 0x95, 0x9b, 0x73, 0xa9, 0xcc, 0x1d, + 0xef, 0xeb, 0x90, 0x77, 0x4f, 0x23, 0xc1, 0xd8, 0x4a, 0xa7, 0x63, 0x62, 0xcb, 0xe2, 0xd1, 0xdb, + 0xe9, 0xd2, 0x1a, 0x99, 0xfe, 0x09, 0xaf, 0x95, 0x24, 0x25, 0xd6, 0x11, 0x3b, 0x50, 0x1e, 0x3b, + 0xca, 0xe8, 0x75, 0xc8, 0x1a, 0xc3, 0x96, 0xec, 0x6c, 0x92, 0xb1, 0x07, 0x3c, 0x0e, 0x7a, 0x1b, + 0xb6, 0xfa, 0x6a, 0xfb, 0x1e, 0xbe, 0x70, 0x06, 0x63, 0x0c, 0x5b, 0xf7, 0xd8, 0x5e, 0x62, 0x7f, + 0x49, 0xf8, 0xff, 0x32, 0x82, 0x9c, 0x73, 0x34, 0xd0, 0x0f, 0x20, 0xef, 0x7a, 0x09, 0xb7, 0x74, + 0x1a, 0xea, 0x5e, 0xb8, 0x7a, 0x4f, 0x04, 0xdd, 0x82, 0x65, 0x4b, 0xed, 0x6a, 0xb8, 0x23, 0x7b, + 0x28, 0x9f, 0xfe, 0x2d, 0x27, 0x95, 0xd9, 0x87, 0x03, 0x07, 0xe2, 0x8b, 0xff, 0x8e, 0x43, 0xce, + 0xb9, 0xf2, 0x46, 0x2f, 0xfb, 0x4e, 0x5f, 0x69, 0x5a, 0x44, 0xe0, 0x8c, 0x5e, 0x79, 0x2e, 0x38, + 0xd6, 0xc4, 0xe2, 0x63, 0x0d, 0xab, 0x1f, 0x38, 0x95, 0xe3, 0xd4, 0xc2, 0x95, 0xe3, 0x17, 0x01, + 0xd9, 0xba, 0xad, 0xf4, 0xe5, 0x91, 0x6e, 0xab, 0x5a, 0x57, 0x66, 0xc6, 0x66, 0x07, 0xa5, 0x42, + 0xbf, 0xdc, 0xa7, 0x1f, 0x8e, 0xa9, 0xdd, 0x7f, 0x1a, 0x87, 0x9c, 0x9b, 0x9a, 0x2e, 0x5a, 0xbc, + 0x5b, 0x83, 0x0c, 0xcf, 0xbe, 0x58, 0xf5, 0x8e, 0xf7, 0xdc, 0x42, 0x49, 0xca, 0x57, 0x28, 0x11, + 0x20, 0x37, 0xc0, 0xb6, 0x42, 0x4f, 0x3d, 0xbb, 0x68, 0x71, 0xfb, 0xb7, 0x5e, 0x83, 0x82, 0xaf, + 0xf0, 0x49, 0x1c, 0xc1, 0x61, 0xfd, 0xdd, 0x4a, 0x4c, 0xc8, 0x7e, 0xfa, 0xf9, 0xf5, 0xe4, 0x21, + 0xfe, 0x84, 0xec, 0x59, 0xa9, 0x5e, 0x6b, 0xd4, 0x6b, 0xf7, 0x2a, 0x71, 0xa1, 0xf0, 0xe9, 0xe7, + 0xd7, 0xb3, 0x12, 0xa6, 0xb7, 0xd2, 0xb7, 0x1a, 0xb0, 0xe4, 0x5f, 0x95, 0x60, 0x66, 0x81, 0xa0, + 0x74, 0xf7, 0xf4, 0xf8, 0x60, 0xbf, 0xb6, 0xd3, 0xac, 0xcb, 0xf7, 0x8f, 0x9a, 0xf5, 0x4a, 0x1c, + 0x3d, 0x09, 0x2b, 0x07, 0xfb, 0x3f, 0x6c, 0x34, 0xe5, 0xda, 0xc1, 0x7e, 0xfd, 0xb0, 0x29, 0xef, + 0x34, 0x9b, 0x3b, 0xb5, 0x7b, 0x95, 0xc4, 0xf6, 0x17, 0x45, 0x28, 0xef, 0xec, 0xd6, 0xf6, 0x49, + 0xf2, 0xa9, 0xb6, 0x15, 0x7a, 0x0b, 0x56, 0x83, 0x14, 0xbd, 0xe7, 0x9a, 0xf9, 0x16, 0x4e, 0x98, + 0x5d, 0xaf, 0x40, 0x7b, 0x90, 0xa6, 0x57, 0x60, 0x68, 0xf6, 0xe3, 0x38, 0x61, 0x4e, 0x01, 0x83, + 0x0c, 0x86, 0x1e, 0x8f, 0x99, 0xaf, 0xe5, 0x84, 0xd9, 0xf5, 0x0c, 0x24, 0x41, 0xde, 0x83, 0xd0, + 0xf3, 0x5f, 0x8f, 0x09, 0x11, 0x9c, 0x0d, 0x3a, 0x80, 0xac, 0x73, 0xeb, 0x31, 0xef, 0x3d, 0x9b, + 0x30, 0xb7, 0xe0, 0x40, 0xcc, 0xc5, 0x6e, 0xa7, 0x66, 0x3f, 0xce, 0x13, 0xe6, 0x54, 0x4f, 0xd0, + 0x3e, 0x64, 0x38, 0x2c, 0x9c, 0xf3, 0x46, 0x4d, 0x98, 0x57, 0x40, 0x20, 0x46, 0xf3, 0xee, 0xfd, + 0xe6, 0x3f, 0x39, 0x14, 0x22, 0x14, 0x86, 0xd0, 0x29, 0x80, 0xef, 0x2e, 0x2a, 0xc2, 0x5b, 0x42, + 0x21, 0x4a, 0xc1, 0x07, 0x1d, 0x41, 0xce, 0xbd, 0x1a, 0x98, 0xfb, 0xb2, 0x4f, 0x98, 0x5f, 0x79, + 0x41, 0x0f, 0xa0, 0x18, 0x84, 0xc4, 0xd1, 0xde, 0xeb, 0x09, 0x11, 0x4b, 0x2a, 0x44, 0x7f, 0x10, + 0x1f, 0x47, 0x7b, 0xbf, 0x27, 0x44, 0xac, 0xb0, 0xa0, 0x8f, 0x60, 0x79, 0x12, 0xbf, 0x46, 0x7f, + 0xce, 0x27, 0x2c, 0x50, 0x73, 0x41, 0x03, 0x40, 0x53, 0x70, 0xef, 0x02, 0xaf, 0xfb, 0x84, 0x45, + 0x4a, 0x30, 0xa8, 0x03, 0xe5, 0x71, 0x30, 0x19, 0xf5, 0xb5, 0x9f, 0x10, 0xb9, 0x1c, 0xc3, 0xfe, + 0x12, 0x84, 0x5c, 0x51, 0x5f, 0xff, 0x09, 0x91, 0xab, 0x33, 0xe4, 0x38, 0xf8, 0xe0, 0x6d, 0x84, + 0xd7, 0x80, 0x42, 0x94, 0x3a, 0x0d, 0x32, 0x60, 0x65, 0x1a, 0xac, 0x5d, 0xe4, 0x71, 0xa0, 0xb0, + 0x50, 0xf9, 0x86, 0xec, 0xe7, 0x20, 0xd4, 0x8a, 0xf6, 0x58, 0x50, 0x88, 0x58, 0xc7, 0xd9, 0xad, + 0x7f, 0xf9, 0xcd, 0x7a, 0xfc, 0xab, 0x6f, 0xd6, 0xe3, 0x7f, 0xff, 0x66, 0x3d, 0xfe, 0xd9, 0xb7, + 0xeb, 0xb1, 0xaf, 0xbe, 0x5d, 0x8f, 0xfd, 0xe5, 0xdb, 0xf5, 0xd8, 0x8f, 0x5f, 0xe8, 0xaa, 0x76, + 0x6f, 0xd8, 0xda, 0x6c, 0xeb, 0x83, 0x2d, 0xff, 0x5b, 0xf1, 0x69, 0xef, 0xd7, 0x5b, 0x19, 0x9a, + 0x49, 0xdc, 0xfe, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x67, 0x9a, 0x73, 0x47, 0xdf, 0x2e, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3742,6 +4058,7 @@ type ABCIApplicationClient interface { ProcessProposal(ctx context.Context, in *RequestProcessProposal, opts ...grpc.CallOption) (*ResponseProcessProposal, error) ExtendVote(ctx context.Context, in *RequestExtendVote, opts ...grpc.CallOption) (*ResponseExtendVote, error) VerifyVoteExtension(ctx context.Context, in *RequestVerifyVoteExtension, opts ...grpc.CallOption) (*ResponseVerifyVoteExtension, error) + FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) } type aBCIApplicationClient struct { @@ -3914,6 +4231,15 @@ func (c *aBCIApplicationClient) VerifyVoteExtension(ctx context.Context, in *Req return out, nil } +func (c *aBCIApplicationClient) FinalizeBlock(ctx context.Context, in *RequestFinalizeBlock, opts ...grpc.CallOption) (*ResponseFinalizeBlock, error) { + out := new(ResponseFinalizeBlock) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/FinalizeBlock", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ABCIApplicationServer is the server API for ABCIApplication service. type ABCIApplicationServer interface { Echo(context.Context, *RequestEcho) (*ResponseEcho, error) @@ -3934,6 +4260,7 @@ type ABCIApplicationServer interface { ProcessProposal(context.Context, *RequestProcessProposal) (*ResponseProcessProposal, error) ExtendVote(context.Context, *RequestExtendVote) (*ResponseExtendVote, error) VerifyVoteExtension(context.Context, *RequestVerifyVoteExtension) (*ResponseVerifyVoteExtension, error) + FinalizeBlock(context.Context, *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) } // UnimplementedABCIApplicationServer can be embedded to have forward compatible implementations. @@ -3994,6 +4321,9 @@ func (*UnimplementedABCIApplicationServer) ExtendVote(ctx context.Context, req * func (*UnimplementedABCIApplicationServer) VerifyVoteExtension(ctx context.Context, req *RequestVerifyVoteExtension) (*ResponseVerifyVoteExtension, error) { return nil, status.Errorf(codes.Unimplemented, "method VerifyVoteExtension not implemented") } +func (*UnimplementedABCIApplicationServer) FinalizeBlock(ctx context.Context, req *RequestFinalizeBlock) (*ResponseFinalizeBlock, error) { + return nil, status.Errorf(codes.Unimplemented, "method FinalizeBlock not implemented") +} func RegisterABCIApplicationServer(s *grpc.Server, srv ABCIApplicationServer) { s.RegisterService(&_ABCIApplication_serviceDesc, srv) @@ -4323,6 +4653,24 @@ func _ABCIApplication_VerifyVoteExtension_Handler(srv interface{}, ctx context.C return interceptor(ctx, in, info, handler) } +func _ABCIApplication_FinalizeBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestFinalizeBlock) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).FinalizeBlock(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/FinalizeBlock", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).FinalizeBlock(ctx, req.(*RequestFinalizeBlock)) + } + return interceptor(ctx, in, info, handler) +} + var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ ServiceName: "tendermint.abci.ABCIApplication", HandlerType: (*ABCIApplicationServer)(nil), @@ -4399,6 +4747,10 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "VerifyVoteExtension", Handler: _ABCIApplication_VerifyVoteExtension_Handler, }, + { + MethodName: "FinalizeBlock", + Handler: _ABCIApplication_FinalizeBlock_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "tendermint/abci/types.proto", @@ -4820,6 +5172,29 @@ func (m *Request_VerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, er } return len(dAtA) - i, nil } +func (m *Request_FinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Request_FinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.FinalizeBlock != nil { + { + size, err := m.FinalizeBlock.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x9a + } + return len(dAtA) - i, nil +} func (m *RequestEcho) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4850,6 +5225,70 @@ func (m *RequestEcho) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *RequestBeginBlock) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestBeginBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestBeginBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ByzantineValidators) > 0 { + for iNdEx := len(m.ByzantineValidators) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ByzantineValidators[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + } + { + size, err := m.LastCommitInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + { + size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + if len(m.Hash) > 0 { + i -= len(m.Hash) + copy(dAtA[i:], m.Hash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Hash))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *RequestFlush) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4985,12 +5424,12 @@ func (m *RequestInitChain) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - n20, err20 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err20 != nil { - return 0, err20 + n23, err23 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err23 != nil { + return 0, err23 } - i -= n20 - i = encodeVarintTypes(dAtA, i, uint64(n20)) + i -= n23 + i = encodeVarintTypes(dAtA, i, uint64(n23)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -5048,105 +5487,6 @@ func (m *RequestQuery) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *RequestBeginBlock) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *RequestBeginBlock) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *RequestBeginBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.ByzantineValidators) > 0 { - for iNdEx := len(m.ByzantineValidators) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.ByzantineValidators[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - } - { - size, err := m.LastCommitInfo.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - { - size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - if len(m.Hash) > 0 { - i -= len(m.Hash) - copy(dAtA[i:], m.Hash) - i = encodeVarintTypes(dAtA, i, uint64(len(m.Hash))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *RequestCheckTx) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *RequestCheckTx) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *RequestCheckTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.Type != 0 { - i = encodeVarintTypes(dAtA, i, uint64(m.Type)) - i-- - dAtA[i] = 0x10 - } - if len(m.Tx) > 0 { - i -= len(m.Tx) - copy(dAtA[i:], m.Tx) - i = encodeVarintTypes(dAtA, i, uint64(len(m.Tx))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - func (m *RequestDeliverTx) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5205,6 +5545,41 @@ func (m *RequestEndBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *RequestCheckTx) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestCheckTx) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestCheckTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Type != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Type)) + i-- + dAtA[i] = 0x10 + } + if len(m.Tx) > 0 { + i -= len(m.Tx) + copy(dAtA[i:], m.Tx) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Tx))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *RequestCommit) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5500,13 +5875,37 @@ func (m *RequestProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) _ = i var l int _ = l + if len(m.ByzantineValidators) > 0 { + for iNdEx := len(m.ByzantineValidators) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ByzantineValidators[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } + } + { + size, err := m.LastCommitInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 if len(m.Txs) > 0 { for iNdEx := len(m.Txs) - 1; iNdEx >= 0; iNdEx-- { i -= len(m.Txs[iNdEx]) copy(dAtA[i:], m.Txs[iNdEx]) i = encodeVarintTypes(dAtA, i, uint64(len(m.Txs[iNdEx]))) i-- - dAtA[i] = 0x12 + dAtA[i] = 0x1a } } { @@ -5518,7 +5917,92 @@ func (m *RequestProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) i = encodeVarintTypes(dAtA, i, uint64(size)) } i-- - dAtA[i] = 0xa + dAtA[i] = 0x12 + if len(m.Hash) > 0 { + i -= len(m.Hash) + copy(dAtA[i:], m.Hash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Hash))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RequestFinalizeBlock) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestFinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestFinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ByzantineValidators) > 0 { + for iNdEx := len(m.ByzantineValidators) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ByzantineValidators[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 + } + } + { + size, err := m.LastCommitInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + { + size, err := m.Header.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + if m.Height != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Height)) + i-- + dAtA[i] = 0x18 + } + if len(m.Hash) > 0 { + i -= len(m.Hash) + copy(dAtA[i:], m.Hash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Hash))) + i-- + dAtA[i] = 0x12 + } + if len(m.Txs) > 0 { + for iNdEx := len(m.Txs) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Txs[iNdEx]) + copy(dAtA[i:], m.Txs[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Txs[iNdEx]))) + i-- + dAtA[i] = 0xa + } + } return len(dAtA) - i, nil } @@ -5961,6 +6445,29 @@ func (m *Response_VerifyVoteExtension) MarshalToSizedBuffer(dAtA []byte) (int, e } return len(dAtA) - i, nil } +func (m *Response_FinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Response_FinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.FinalizeBlock != nil { + { + size, err := m.FinalizeBlock.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0xa2 + } + return len(dAtA) - i, nil +} func (m *ResponseException) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6678,20 +7185,20 @@ func (m *ResponseApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err } } if len(m.RefetchChunks) > 0 { - dAtA50 := make([]byte, len(m.RefetchChunks)*10) - var j49 int + dAtA55 := make([]byte, len(m.RefetchChunks)*10) + var j54 int for _, num := range m.RefetchChunks { for num >= 1<<7 { - dAtA50[j49] = uint8(uint64(num)&0x7f | 0x80) + dAtA55[j54] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j49++ + j54++ } - dAtA50[j49] = uint8(num) - j49++ + dAtA55[j54] = uint8(num) + j54++ } - i -= j49 - copy(dAtA[i:], dAtA50[:j49]) - i = encodeVarintTypes(dAtA, i, uint64(j49)) + i -= j54 + copy(dAtA[i:], dAtA55[:j54]) + i = encodeVarintTypes(dAtA, i, uint64(j54)) i-- dAtA[i] = 0x12 } @@ -6818,19 +7325,139 @@ func (m *ResponseProcessProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) _ = i var l int _ = l - if len(m.Evidence) > 0 { - for iNdEx := len(m.Evidence) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.Evidence[iNdEx]) - copy(dAtA[i:], m.Evidence[iNdEx]) - i = encodeVarintTypes(dAtA, i, uint64(len(m.Evidence[iNdEx]))) + if m.ConsensusParamUpdates != nil { + { + size, err := m.ConsensusParamUpdates.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } + if len(m.ValidatorUpdates) > 0 { + for iNdEx := len(m.ValidatorUpdates) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ValidatorUpdates[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + } + if len(m.TxResults) > 0 { + for iNdEx := len(m.TxResults) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.TxResults[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if len(m.AppHash) > 0 { + i -= len(m.AppHash) + copy(dAtA[i:], m.AppHash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.AppHash))) + i-- + dAtA[i] = 0x12 + } + if m.Accept { + i-- + if m.Accept { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ResponseFinalizeBlock) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ResponseFinalizeBlock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ResponseFinalizeBlock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Events) > 0 { + for iNdEx := len(m.Events) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Events[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + } + if m.ConsensusParamUpdates != nil { + { + size, err := m.ConsensusParamUpdates.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if len(m.ValidatorUpdates) > 0 { + for iNdEx := len(m.ValidatorUpdates) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ValidatorUpdates[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } i-- dAtA[i] = 0x12 } } - if m.Result != 0 { - i = encodeVarintTypes(dAtA, i, uint64(m.Result)) - i-- - dAtA[i] = 0x8 + if len(m.Txs) > 0 { + for iNdEx := len(m.Txs) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Txs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } } return len(dAtA) - i, nil } @@ -6968,6 +7595,86 @@ func (m *EventAttribute) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *ExecTxResult) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ExecTxResult) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ExecTxResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Codespace) > 0 { + i -= len(m.Codespace) + copy(dAtA[i:], m.Codespace) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Codespace))) + i-- + dAtA[i] = 0x42 + } + if len(m.TxEvents) > 0 { + for iNdEx := len(m.TxEvents) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.TxEvents[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } + } + if m.GasUsed != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.GasUsed)) + i-- + dAtA[i] = 0x30 + } + if m.GasWanted != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.GasWanted)) + i-- + dAtA[i] = 0x28 + } + if len(m.Info) > 0 { + i -= len(m.Info) + copy(dAtA[i:], m.Info) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Info))) + i-- + dAtA[i] = 0x22 + } + if len(m.Log) > 0 { + i -= len(m.Log) + copy(dAtA[i:], m.Log) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Log))) + i-- + dAtA[i] = 0x1a + } + if len(m.Data) > 0 { + i -= len(m.Data) + copy(dAtA[i:], m.Data) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Data))) + i-- + dAtA[i] = 0x12 + } + if m.Code != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Code)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + func (m *TxResult) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -7159,12 +7866,12 @@ func (m *Evidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x28 } - n55, err55 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err55 != nil { - return 0, err55 + n62, err62 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err62 != nil { + return 0, err62 } - i -= n55 - i = encodeVarintTypes(dAtA, i, uint64(n55)) + i -= n62 + i = encodeVarintTypes(dAtA, i, uint64(n62)) i-- dAtA[i] = 0x22 if m.Height != 0 { @@ -7481,6 +8188,18 @@ func (m *Request_VerifyVoteExtension) Size() (n int) { } return n } +func (m *Request_FinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.FinalizeBlock != nil { + l = m.FinalizeBlock.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *RequestEcho) Size() (n int) { if m == nil { return 0 @@ -7494,6 +8213,29 @@ func (m *RequestEcho) Size() (n int) { return n } +func (m *RequestBeginBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Hash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = m.Header.Size() + n += 1 + l + sovTypes(uint64(l)) + l = m.LastCommitInfo.Size() + n += 1 + l + sovTypes(uint64(l)) + if len(m.ByzantineValidators) > 0 { + for _, e := range m.ByzantineValidators { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + func (m *RequestFlush) Size() (n int) { if m == nil { return 0 @@ -7581,45 +8323,6 @@ func (m *RequestQuery) Size() (n int) { return n } -func (m *RequestBeginBlock) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Hash) - if l > 0 { - n += 1 + l + sovTypes(uint64(l)) - } - l = m.Header.Size() - n += 1 + l + sovTypes(uint64(l)) - l = m.LastCommitInfo.Size() - n += 1 + l + sovTypes(uint64(l)) - if len(m.ByzantineValidators) > 0 { - for _, e := range m.ByzantineValidators { - l = e.Size() - n += 1 + l + sovTypes(uint64(l)) - } - } - return n -} - -func (m *RequestCheckTx) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Tx) - if l > 0 { - n += 1 + l + sovTypes(uint64(l)) - } - if m.Type != 0 { - n += 1 + sovTypes(uint64(m.Type)) - } - return n -} - func (m *RequestDeliverTx) Size() (n int) { if m == nil { return 0 @@ -7645,6 +8348,22 @@ func (m *RequestEndBlock) Size() (n int) { return n } +func (m *RequestCheckTx) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Tx) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.Type != 0 { + n += 1 + sovTypes(uint64(m.Type)) + } + return n +} + func (m *RequestCommit) Size() (n int) { if m == nil { return 0 @@ -7768,6 +8487,10 @@ func (m *RequestProcessProposal) Size() (n int) { } var l int _ = l + l = len(m.Hash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } l = m.Header.Size() n += 1 + l + sovTypes(uint64(l)) if len(m.Txs) > 0 { @@ -7776,6 +8499,46 @@ func (m *RequestProcessProposal) Size() (n int) { n += 1 + l + sovTypes(uint64(l)) } } + l = m.LastCommitInfo.Size() + n += 1 + l + sovTypes(uint64(l)) + if len(m.ByzantineValidators) > 0 { + for _, e := range m.ByzantineValidators { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func (m *RequestFinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Txs) > 0 { + for _, b := range m.Txs { + l = len(b) + n += 1 + l + sovTypes(uint64(l)) + } + } + l = len(m.Hash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.Height != 0 { + n += 1 + sovTypes(uint64(m.Height)) + } + l = m.Header.Size() + n += 1 + l + sovTypes(uint64(l)) + l = m.LastCommitInfo.Size() + n += 1 + l + sovTypes(uint64(l)) + if len(m.ByzantineValidators) > 0 { + for _, e := range m.ByzantineValidators { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } return n } @@ -8019,6 +8782,18 @@ func (m *Response_VerifyVoteExtension) Size() (n int) { } return n } +func (m *Response_FinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.FinalizeBlock != nil { + l = m.FinalizeBlock.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *ResponseException) Size() (n int) { if m == nil { return 0 @@ -8404,12 +9179,57 @@ func (m *ResponseProcessProposal) Size() (n int) { } var l int _ = l - if m.Result != 0 { - n += 1 + sovTypes(uint64(m.Result)) + if m.Accept { + n += 2 } - if len(m.Evidence) > 0 { - for _, b := range m.Evidence { - l = len(b) + l = len(m.AppHash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if len(m.TxResults) > 0 { + for _, e := range m.TxResults { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if len(m.ValidatorUpdates) > 0 { + for _, e := range m.ValidatorUpdates { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if m.ConsensusParamUpdates != nil { + l = m.ConsensusParamUpdates.Size() + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *ResponseFinalizeBlock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Txs) > 0 { + for _, e := range m.Txs { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if len(m.ValidatorUpdates) > 0 { + for _, e := range m.ValidatorUpdates { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if m.ConsensusParamUpdates != nil { + l = m.ConsensusParamUpdates.Size() + n += 1 + l + sovTypes(uint64(l)) + } + if len(m.Events) > 0 { + for _, e := range m.Events { + l = e.Size() n += 1 + l + sovTypes(uint64(l)) } } @@ -8473,6 +9293,46 @@ func (m *EventAttribute) Size() (n int) { return n } +func (m *ExecTxResult) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Code != 0 { + n += 1 + sovTypes(uint64(m.Code)) + } + l = len(m.Data) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Log) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Info) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.GasWanted != 0 { + n += 1 + sovTypes(uint64(m.GasWanted)) + } + if m.GasUsed != 0 { + n += 1 + sovTypes(uint64(m.GasUsed)) + } + if len(m.TxEvents) > 0 { + for _, e := range m.TxEvents { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + l = len(m.Codespace) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + func (m *TxResult) Size() (n int) { if m == nil { return 0 @@ -9251,6 +10111,41 @@ func (m *Request) Unmarshal(dAtA []byte) error { } m.Value = &Request_VerifyVoteExtension{v} iNdEx = postIndex + case 19: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FinalizeBlock", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &RequestFinalizeBlock{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Request_FinalizeBlock{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -9354,6 +10249,190 @@ func (m *RequestEcho) Unmarshal(dAtA []byte) error { } return nil } +func (m *RequestBeginBlock) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RequestBeginBlock: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestBeginBlock: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Hash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Hash = append(m.Hash[:0], dAtA[iNdEx:postIndex]...) + if m.Hash == nil { + m.Hash = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastCommitInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastCommitInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ByzantineValidators", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ByzantineValidators = append(m.ByzantineValidators, Evidence{}) + if err := m.ByzantineValidators[len(m.ByzantineValidators)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *RequestFlush) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -9680,7 +10759,7 @@ func (m *RequestInitChain) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.ConsensusParams == nil { - m.ConsensusParams = &types1.ConsensusParams{} + m.ConsensusParams = &types.ConsensusParams{} } if err := m.ConsensusParams.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -9949,293 +11028,6 @@ func (m *RequestQuery) Unmarshal(dAtA []byte) error { } return nil } -func (m *RequestBeginBlock) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: RequestBeginBlock: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: RequestBeginBlock: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Hash", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthTypes - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthTypes - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Hash = append(m.Hash[:0], dAtA[iNdEx:postIndex]...) - if m.Hash == nil { - m.Hash = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthTypes - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthTypes - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field LastCommitInfo", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthTypes - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthTypes - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.LastCommitInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ByzantineValidators", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthTypes - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthTypes - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ByzantineValidators = append(m.ByzantineValidators, Evidence{}) - if err := m.ByzantineValidators[len(m.ByzantineValidators)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipTypes(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthTypes - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *RequestCheckTx) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: RequestCheckTx: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: RequestCheckTx: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Tx", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthTypes - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthTypes - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Tx = append(m.Tx[:0], dAtA[iNdEx:postIndex]...) - if m.Tx == nil { - m.Tx = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) - } - m.Type = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Type |= CheckTxType(b&0x7F) << shift - if b < 0x80 { - break - } - } - default: - iNdEx = preIndex - skippy, err := skipTypes(dAtA[iNdEx:]) - if err != nil { - return err - } - if (skippy < 0) || (iNdEx+skippy) < 0 { - return ErrInvalidLengthTypes - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *RequestDeliverTx) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -10389,6 +11181,109 @@ func (m *RequestEndBlock) Unmarshal(dAtA []byte) error { } return nil } +func (m *RequestCheckTx) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RequestCheckTx: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestCheckTx: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Tx", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Tx = append(m.Tx[:0], dAtA[iNdEx:postIndex]...) + if m.Tx == nil { + m.Tx = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= CheckTxType(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *RequestCommit) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -11011,7 +11906,7 @@ func (m *RequestExtendVote) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.Vote == nil { - m.Vote = &types1.Vote{} + m.Vote = &types.Vote{} } if err := m.Vote.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -11097,7 +11992,7 @@ func (m *RequestVerifyVoteExtension) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.Vote == nil { - m.Vote = &types1.Vote{} + m.Vote = &types.Vote{} } if err := m.Vote.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -11154,6 +12049,40 @@ func (m *RequestProcessProposal) Unmarshal(dAtA []byte) error { } switch fieldNum { case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Hash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Hash = append(m.Hash[:0], dAtA[iNdEx:postIndex]...) + if m.Hash == nil { + m.Hash = []byte{} + } + iNdEx = postIndex + case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) } @@ -11186,7 +12115,7 @@ func (m *RequestProcessProposal) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex - case 2: + case 3: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Txs", wireType) } @@ -11218,6 +12147,308 @@ func (m *RequestProcessProposal) Unmarshal(dAtA []byte) error { m.Txs = append(m.Txs, make([]byte, postIndex-iNdEx)) copy(m.Txs[len(m.Txs)-1], dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastCommitInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastCommitInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ByzantineValidators", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ByzantineValidators = append(m.ByzantineValidators, Evidence{}) + if err := m.ByzantineValidators[len(m.ByzantineValidators)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RequestFinalizeBlock) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RequestFinalizeBlock: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestFinalizeBlock: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Txs", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Txs = append(m.Txs, make([]byte, postIndex-iNdEx)) + copy(m.Txs[len(m.Txs)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Hash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Hash = append(m.Hash[:0], dAtA[iNdEx:postIndex]...) + if m.Hash == nil { + m.Hash = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Height", wireType) + } + m.Height = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Height |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Header", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Header.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field LastCommitInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.LastCommitInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ByzantineValidators", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ByzantineValidators = append(m.ByzantineValidators, Evidence{}) + if err := m.ByzantineValidators[len(m.ByzantineValidators)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -11933,6 +13164,41 @@ func (m *Response) Unmarshal(dAtA []byte) error { } m.Value = &Response_VerifyVoteExtension{v} iNdEx = postIndex + case 20: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FinalizeBlock", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &ResponseFinalizeBlock{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_FinalizeBlock{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -12413,7 +13679,7 @@ func (m *ResponseInitChain) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.ConsensusParams == nil { - m.ConsensusParams = &types1.ConsensusParams{} + m.ConsensusParams = &types.ConsensusParams{} } if err := m.ConsensusParams.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -13617,7 +14883,7 @@ func (m *ResponseEndBlock) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.ConsensusParamUpdates == nil { - m.ConsensusParamUpdates = &types1.ConsensusParams{} + m.ConsensusParamUpdates = &types.ConsensusParams{} } if err := m.ConsensusParamUpdates.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -14336,7 +15602,7 @@ func (m *ResponseExtendVote) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.VoteExtension == nil { - m.VoteExtension = &types1.VoteExtension{} + m.VoteExtension = &types.VoteExtension{} } if err := m.VoteExtension.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -14463,9 +15729,9 @@ func (m *ResponseProcessProposal) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Result", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Accept", wireType) } - m.Result = 0 + var v int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes @@ -14475,14 +15741,15 @@ func (m *ResponseProcessProposal) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - m.Result |= ResponseProcessProposal_Result(b&0x7F) << shift + v |= int(b&0x7F) << shift if b < 0x80 { break } } + m.Accept = bool(v != 0) case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Evidence", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AppHash", wireType) } var byteLen int for shift := uint(0); ; shift += 7 { @@ -14509,8 +15776,302 @@ func (m *ResponseProcessProposal) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Evidence = append(m.Evidence, make([]byte, postIndex-iNdEx)) - copy(m.Evidence[len(m.Evidence)-1], dAtA[iNdEx:postIndex]) + m.AppHash = append(m.AppHash[:0], dAtA[iNdEx:postIndex]...) + if m.AppHash == nil { + m.AppHash = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TxResults", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TxResults = append(m.TxResults, &ExecTxResult{}) + if err := m.TxResults[len(m.TxResults)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorUpdates", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorUpdates = append(m.ValidatorUpdates, &ValidatorUpdate{}) + if err := m.ValidatorUpdates[len(m.ValidatorUpdates)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ConsensusParamUpdates", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ConsensusParamUpdates == nil { + m.ConsensusParamUpdates = &types.ConsensusParams{} + } + if err := m.ConsensusParamUpdates.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ResponseFinalizeBlock) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ResponseFinalizeBlock: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ResponseFinalizeBlock: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Txs", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Txs = append(m.Txs, &ResponseDeliverTx{}) + if err := m.Txs[len(m.Txs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorUpdates", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorUpdates = append(m.ValidatorUpdates, ValidatorUpdate{}) + if err := m.ValidatorUpdates[len(m.ValidatorUpdates)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ConsensusParamUpdates", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ConsensusParamUpdates == nil { + m.ConsensusParamUpdates = &types.ConsensusParams{} + } + if err := m.ConsensusParamUpdates.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Events = append(m.Events, Event{}) + if err := m.Events[len(m.Events)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } iNdEx = postIndex default: iNdEx = preIndex @@ -14886,6 +16447,277 @@ func (m *EventAttribute) Unmarshal(dAtA []byte) error { } return nil } +func (m *ExecTxResult) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ExecTxResult: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ExecTxResult: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Code", wireType) + } + m.Code = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Code |= uint32(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Log", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Log = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Info", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Info = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasWanted", wireType) + } + m.GasWanted = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasWanted |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasUsed", wireType) + } + m.GasUsed = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasUsed |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TxEvents", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TxEvents = append(m.TxEvents, Event{}) + if err := m.TxEvents[len(m.TxEvents)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 8: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Codespace", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Codespace = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *TxResult) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0