Browse Source

Update the ResponseEndBlock values

* Rename diffs -> changes
* Add consensus_param_changes

For context, see:
https://github.com/tendermint/tendermint/issues/924
https://github.com/tendermint/tendermint/issues/952
pull/1780/head
Ethan Frey 7 years ago
parent
commit
25f6f6518c
2 changed files with 276 additions and 110 deletions
  1. +247
    -109
      types/types.pb.go
  2. +29
    -1
      types/types.proto

+ 247
- 109
types/types.pb.go View File

@ -33,6 +33,10 @@ It has these top-level messages:
ResponseInitChain
ResponseBeginBlock
ResponseEndBlock
ConsensusParams
BlockSizeParams
TxSizeParams
BlockGossipParams
Header
BlockID
PartSetHeader
@ -82,7 +86,7 @@ var KVPair_Type_value = map[string]int32{
func (x KVPair_Type) String() string {
return proto.EnumName(KVPair_Type_name, int32(x))
}
func (KVPair_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptorTypes, []int{30, 0} }
func (KVPair_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptorTypes, []int{34, 0} }
type Request struct {
// Types that are valid to be assigned to Value:
@ -1394,7 +1398,8 @@ func (*ResponseBeginBlock) ProtoMessage() {}
func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{23} }
type ResponseEndBlock struct {
Diffs []*Validator `protobuf:"bytes,1,rep,name=diffs" json:"diffs,omitempty"`
Changes []*Validator `protobuf:"bytes,1,rep,name=changes" json:"changes,omitempty"`
ConsensusParamChanges *ConsensusParams `protobuf:"bytes,2,opt,name=consensus_param_changes,json=consensusParamChanges" json:"consensus_param_changes,omitempty"`
}
func (m *ResponseEndBlock) Reset() { *m = ResponseEndBlock{} }
@ -1402,13 +1407,130 @@ func (m *ResponseEndBlock) String() string { return proto.CompactText
func (*ResponseEndBlock) ProtoMessage() {}
func (*ResponseEndBlock) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{24} }
func (m *ResponseEndBlock) GetDiffs() []*Validator {
func (m *ResponseEndBlock) GetChanges() []*Validator {
if m != nil {
return m.Diffs
return m.Changes
}
return nil
}
func (m *ResponseEndBlock) GetConsensusParamChanges() *ConsensusParams {
if m != nil {
return m.ConsensusParamChanges
}
return nil
}
type ConsensusParams struct {
BlockSizeParams *BlockSizeParams `protobuf:"bytes,1,opt,name=block_size_params,json=blockSizeParams" json:"block_size_params,omitempty"`
TxSizeParams *TxSizeParams `protobuf:"bytes,2,opt,name=tx_size_params,json=txSizeParams" json:"tx_size_params,omitempty"`
BlockGossipParams *BlockGossipParams `protobuf:"bytes,3,opt,name=block_gossip_params,json=blockGossipParams" json:"block_gossip_params,omitempty"`
}
func (m *ConsensusParams) Reset() { *m = ConsensusParams{} }
func (m *ConsensusParams) String() string { return proto.CompactTextString(m) }
func (*ConsensusParams) ProtoMessage() {}
func (*ConsensusParams) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{25} }
func (m *ConsensusParams) GetBlockSizeParams() *BlockSizeParams {
if m != nil {
return m.BlockSizeParams
}
return nil
}
func (m *ConsensusParams) GetTxSizeParams() *TxSizeParams {
if m != nil {
return m.TxSizeParams
}
return nil
}
func (m *ConsensusParams) GetBlockGossipParams() *BlockGossipParams {
if m != nil {
return m.BlockGossipParams
}
return nil
}
// BlockSizeParams contain limits on the block size.
type BlockSizeParams struct {
// NOTE: must not be 0 nor greater than 100MB
MaxBytes int32 `protobuf:"varint,1,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"`
MaxTxs int32 `protobuf:"varint,2,opt,name=max_txs,json=maxTxs,proto3" json:"max_txs,omitempty"`
MaxGas int64 `protobuf:"varint,3,opt,name=max_gas,json=maxGas,proto3" json:"max_gas,omitempty"`
}
func (m *BlockSizeParams) Reset() { *m = BlockSizeParams{} }
func (m *BlockSizeParams) String() string { return proto.CompactTextString(m) }
func (*BlockSizeParams) ProtoMessage() {}
func (*BlockSizeParams) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{26} }
func (m *BlockSizeParams) GetMaxBytes() int32 {
if m != nil {
return m.MaxBytes
}
return 0
}
func (m *BlockSizeParams) GetMaxTxs() int32 {
if m != nil {
return m.MaxTxs
}
return 0
}
func (m *BlockSizeParams) GetMaxGas() int64 {
if m != nil {
return m.MaxGas
}
return 0
}
// TxSizeParams contain limits on the tx size.
type TxSizeParams struct {
MaxBytes int32 `protobuf:"varint,1,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"`
MaxGas int64 `protobuf:"varint,2,opt,name=max_gas,json=maxGas,proto3" json:"max_gas,omitempty"`
}
func (m *TxSizeParams) Reset() { *m = TxSizeParams{} }
func (m *TxSizeParams) String() string { return proto.CompactTextString(m) }
func (*TxSizeParams) ProtoMessage() {}
func (*TxSizeParams) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{27} }
func (m *TxSizeParams) GetMaxBytes() int32 {
if m != nil {
return m.MaxBytes
}
return 0
}
func (m *TxSizeParams) GetMaxGas() int64 {
if m != nil {
return m.MaxGas
}
return 0
}
// BlockGossipParams determine consensus critical
// elements of how blocks are gossiped
type BlockGossipParams struct {
// Note: must not be 0
BlockPartSizeBytes int32 `protobuf:"varint,1,opt,name=block_part_size_bytes,json=blockPartSizeBytes,proto3" json:"block_part_size_bytes,omitempty"`
}
func (m *BlockGossipParams) Reset() { *m = BlockGossipParams{} }
func (m *BlockGossipParams) String() string { return proto.CompactTextString(m) }
func (*BlockGossipParams) ProtoMessage() {}
func (*BlockGossipParams) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{28} }
func (m *BlockGossipParams) GetBlockPartSizeBytes() int32 {
if m != nil {
return m.BlockPartSizeBytes
}
return 0
}
type Header struct {
ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
Height int64 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"`
@ -1424,7 +1546,7 @@ type Header struct {
func (m *Header) Reset() { *m = Header{} }
func (m *Header) String() string { return proto.CompactTextString(m) }
func (*Header) ProtoMessage() {}
func (*Header) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{25} }
func (*Header) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{29} }
func (m *Header) GetChainId() string {
if m != nil {
@ -1497,7 +1619,7 @@ type BlockID struct {
func (m *BlockID) Reset() { *m = BlockID{} }
func (m *BlockID) String() string { return proto.CompactTextString(m) }
func (*BlockID) ProtoMessage() {}
func (*BlockID) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{26} }
func (*BlockID) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{30} }
func (m *BlockID) GetHash() []byte {
if m != nil {
@ -1521,7 +1643,7 @@ type PartSetHeader struct {
func (m *PartSetHeader) Reset() { *m = PartSetHeader{} }
func (m *PartSetHeader) String() string { return proto.CompactTextString(m) }
func (*PartSetHeader) ProtoMessage() {}
func (*PartSetHeader) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{27} }
func (*PartSetHeader) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{31} }
func (m *PartSetHeader) GetTotal() int32 {
if m != nil {
@ -1545,7 +1667,7 @@ type Validator struct {
func (m *Validator) Reset() { *m = Validator{} }
func (m *Validator) String() string { return proto.CompactTextString(m) }
func (*Validator) ProtoMessage() {}
func (*Validator) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{28} }
func (*Validator) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{32} }
func (m *Validator) GetPubKey() []byte {
if m != nil {
@ -1569,7 +1691,7 @@ type Evidence struct {
func (m *Evidence) Reset() { *m = Evidence{} }
func (m *Evidence) String() string { return proto.CompactTextString(m) }
func (*Evidence) ProtoMessage() {}
func (*Evidence) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{29} }
func (*Evidence) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{33} }
func (m *Evidence) GetPubKey() []byte {
if m != nil {
@ -1595,7 +1717,7 @@ type KVPair struct {
func (m *KVPair) Reset() { *m = KVPair{} }
func (m *KVPair) String() string { return proto.CompactTextString(m) }
func (*KVPair) ProtoMessage() {}
func (*KVPair) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{30} }
func (*KVPair) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{34} }
func (m *KVPair) GetKey() string {
if m != nil {
@ -1651,6 +1773,10 @@ func init() {
proto.RegisterType((*ResponseInitChain)(nil), "types.ResponseInitChain")
proto.RegisterType((*ResponseBeginBlock)(nil), "types.ResponseBeginBlock")
proto.RegisterType((*ResponseEndBlock)(nil), "types.ResponseEndBlock")
proto.RegisterType((*ConsensusParams)(nil), "types.ConsensusParams")
proto.RegisterType((*BlockSizeParams)(nil), "types.BlockSizeParams")
proto.RegisterType((*TxSizeParams)(nil), "types.TxSizeParams")
proto.RegisterType((*BlockGossipParams)(nil), "types.BlockGossipParams")
proto.RegisterType((*Header)(nil), "types.Header")
proto.RegisterType((*BlockID)(nil), "types.BlockID")
proto.RegisterType((*PartSetHeader)(nil), "types.PartSetHeader")
@ -2065,103 +2191,115 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("types/types.proto", fileDescriptorTypes) }
var fileDescriptorTypes = []byte{
// 1554 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x98, 0xcb, 0x6e, 0xdb, 0x46,
0x17, 0xc7, 0x2d, 0x51, 0xd4, 0xe5, 0xf8, 0x26, 0x8f, 0xfd, 0x25, 0x8a, 0xb2, 0x88, 0x43, 0xe0,
0x6b, 0xe4, 0x5c, 0xac, 0xd4, 0x41, 0x8a, 0x38, 0x29, 0x0a, 0x58, 0x71, 0x52, 0x09, 0x01, 0xd2,
0x74, 0x62, 0x64, 0x2b, 0x50, 0xe2, 0x48, 0x22, 0x22, 0x91, 0x0c, 0x39, 0x72, 0xe4, 0xa2, 0x8f,
0x90, 0x7d, 0xd7, 0xed, 0xa6, 0x40, 0x5f, 0xa0, 0xcb, 0xee, 0x8a, 0x3e, 0x43, 0x17, 0x79, 0x96,
0x62, 0xce, 0x0c, 0xaf, 0x26, 0xb3, 0xc8, 0x22, 0x1b, 0x63, 0x2e, 0xe7, 0x3f, 0x3a, 0x33, 0x3c,
0xf3, 0x3b, 0x67, 0x0c, 0x3b, 0xfc, 0xc2, 0x63, 0x41, 0x17, 0xff, 0x1e, 0x7a, 0xbe, 0xcb, 0x5d,
0xa2, 0x63, 0xa7, 0x7d, 0x6f, 0x6a, 0xf3, 0xd9, 0x72, 0x74, 0x38, 0x76, 0x17, 0xdd, 0xa9, 0x3b,
0x75, 0xbb, 0x38, 0x3b, 0x5a, 0x4e, 0xb0, 0x87, 0x1d, 0x6c, 0x49, 0x95, 0xf1, 0x77, 0x05, 0x6a,
0x94, 0xbd, 0x5b, 0xb2, 0x80, 0x93, 0x0e, 0x54, 0xd8, 0x78, 0xe6, 0xb6, 0x4a, 0xfb, 0xa5, 0xce,
0xfa, 0x11, 0x39, 0x94, 0xab, 0xab, 0xd9, 0x67, 0xe3, 0x99, 0xdb, 0x5f, 0xa3, 0x68, 0x41, 0xee,
0x80, 0x3e, 0x99, 0x2f, 0x83, 0x59, 0xab, 0x8c, 0xa6, 0xbb, 0x69, 0xd3, 0xe7, 0x62, 0xaa, 0xbf,
0x46, 0xa5, 0x8d, 0x58, 0xd6, 0x76, 0x26, 0x6e, 0x4b, 0xcb, 0x5b, 0x76, 0xe0, 0x4c, 0x70, 0x59,
0x61, 0x41, 0x1e, 0x01, 0x04, 0x8c, 0x0f, 0x5d, 0x8f, 0xdb, 0xae, 0xd3, 0xaa, 0xa0, 0xfd, 0xd5,
0xb4, 0xfd, 0x6b, 0xc6, 0x7f, 0xc0, 0xe9, 0xfe, 0x1a, 0x6d, 0x04, 0x61, 0x47, 0x28, 0x2d, 0x36,
0xb7, 0xcf, 0x99, 0x3f, 0xe4, 0xab, 0x96, 0x9e, 0xa7, 0x3c, 0x95, 0xf3, 0x67, 0x2b, 0xa1, 0xb4,
0xc2, 0x0e, 0x39, 0x82, 0xfa, 0x78, 0xc6, 0xc6, 0x6f, 0x85, 0xae, 0x8a, 0xba, 0xff, 0xa5, 0x75,
0x4f, 0xc5, 0x2c, 0xaa, 0x6a, 0x63, 0xd9, 0x24, 0x87, 0x50, 0x1d, 0xbb, 0x8b, 0x85, 0xcd, 0x5b,
0x35, 0x54, 0xec, 0x65, 0x14, 0x38, 0xd7, 0x5f, 0xa3, 0xca, 0x4a, 0x1c, 0xd7, 0xbb, 0x25, 0xf3,
0x2f, 0x5a, 0xf5, 0xbc, 0xe3, 0xfa, 0x51, 0x4c, 0x89, 0xe3, 0x42, 0x1b, 0xb1, 0x15, 0xdb, 0xb1,
0xf9, 0x70, 0x3c, 0x33, 0x6d, 0xa7, 0xd5, 0xc8, 0xdb, 0xca, 0xc0, 0xb1, 0xf9, 0x53, 0x31, 0x2d,
0xb6, 0x62, 0x87, 0x1d, 0xf2, 0x04, 0xd6, 0x47, 0x6c, 0x6a, 0x3b, 0xc3, 0xd1, 0xdc, 0x1d, 0xbf,
0x6d, 0x01, 0x4a, 0x5b, 0x69, 0x69, 0x4f, 0x18, 0xf4, 0xc4, 0x7c, 0x7f, 0x8d, 0xc2, 0x28, 0xea,
0x91, 0x87, 0xd0, 0x60, 0x8e, 0xa5, 0xa4, 0xeb, 0x28, 0xbd, 0x92, 0x89, 0x00, 0xc7, 0x0a, 0x85,
0x75, 0xa6, 0xda, 0xbd, 0x1a, 0xe8, 0xe7, 0xe6, 0x7c, 0xc9, 0x8c, 0x5b, 0xb0, 0x9e, 0x88, 0x14,
0xd2, 0x82, 0xda, 0x82, 0x05, 0x81, 0x39, 0x65, 0x18, 0x4e, 0x0d, 0x1a, 0x76, 0x8d, 0x2d, 0xd8,
0x48, 0xc6, 0x49, 0x42, 0x28, 0x62, 0x41, 0x08, 0xcf, 0x99, 0x1f, 0x88, 0x00, 0x50, 0x42, 0xd5,
0x35, 0x1e, 0x43, 0x33, 0x1b, 0x04, 0xa4, 0x09, 0xda, 0x5b, 0x76, 0xa1, 0x2c, 0x45, 0x93, 0xec,
0x29, 0x87, 0x30, 0x34, 0x1b, 0x54, 0x79, 0x67, 0x44, 0xda, 0x28, 0x0c, 0xc8, 0x16, 0x94, 0xf9,
0x0a, 0xa5, 0x1b, 0xb4, 0xcc, 0x57, 0xc6, 0x3e, 0x6c, 0xa5, 0x3f, 0xf9, 0x25, 0x0b, 0x2b, 0x72,
0x1d, 0xbf, 0x19, 0x21, 0x50, 0xb1, 0x4c, 0x6e, 0x2a, 0x0b, 0x6c, 0x8b, 0x31, 0xcf, 0xe4, 0x33,
0xf5, 0xf3, 0xd8, 0x26, 0x57, 0xa0, 0x3a, 0x63, 0xf6, 0x74, 0xc6, 0xf1, 0x0e, 0x68, 0x54, 0xf5,
0x84, 0xaf, 0x9e, 0xef, 0x9e, 0x33, 0x0c, 0xf5, 0x3a, 0x95, 0x1d, 0x63, 0x1b, 0x36, 0x53, 0x81,
0x64, 0x9c, 0x46, 0xce, 0x47, 0x1f, 0x9e, 0xdc, 0x07, 0x38, 0x37, 0xe7, 0xb6, 0x65, 0x72, 0xd7,
0x0f, 0x5a, 0xa5, 0x7d, 0xad, 0xb3, 0x7e, 0xd4, 0x54, 0xdf, 0xeb, 0x4d, 0x38, 0x41, 0x13, 0x36,
0xc6, 0x5f, 0x25, 0xd8, 0xb9, 0x14, 0x04, 0xc2, 0xdd, 0x99, 0x19, 0xcc, 0xc2, 0x2d, 0x88, 0x36,
0xf9, 0xbf, 0x70, 0xd7, 0xb4, 0x98, 0xaf, 0xae, 0xf7, 0xa6, 0x5a, 0xb7, 0x8f, 0x83, 0x54, 0x4d,
0x92, 0x3b, 0xb0, 0x63, 0x8e, 0x02, 0xe6, 0xf0, 0x61, 0xc2, 0x13, 0x6d, 0x5f, 0xeb, 0xe8, 0xb4,
0x29, 0x27, 0x22, 0x47, 0x02, 0xd2, 0x83, 0xbd, 0xd1, 0xc5, 0x4f, 0xa6, 0xc3, 0x6d, 0x87, 0x25,
0xed, 0x2b, 0xe8, 0xf9, 0xb6, 0xfa, 0x85, 0x67, 0xe7, 0xb6, 0xc5, 0x9c, 0x31, 0xa3, 0xbb, 0x91,
0x71, 0xbc, 0x86, 0x71, 0x00, 0xdb, 0x99, 0x50, 0x4c, 0x9c, 0x6c, 0x29, 0x79, 0xb2, 0xc6, 0x07,
0x1d, 0xea, 0x94, 0x05, 0x9e, 0xeb, 0x04, 0x8c, 0x3c, 0x82, 0x06, 0x5b, 0x8d, 0x99, 0xa4, 0x4a,
0x29, 0x73, 0x2b, 0xa4, 0xcd, 0xb3, 0x70, 0x5e, 0xdc, 0xa8, 0xc8, 0x98, 0x1c, 0x28, 0x22, 0x66,
0x31, 0xa7, 0x44, 0x49, 0x24, 0xde, 0x0d, 0x91, 0xa8, 0x65, 0x90, 0x20, 0x6d, 0x33, 0x4c, 0x3c,
0x50, 0x4c, 0xac, 0xe4, 0x2e, 0x9c, 0x82, 0xe2, 0x71, 0x0a, 0x8a, 0x7a, 0xae, 0xfb, 0x05, 0x54,
0x3c, 0x4e, 0x51, 0xb1, 0x9a, 0x2b, 0x2d, 0xc0, 0xe2, 0x83, 0x04, 0x16, 0x6b, 0x19, 0x1a, 0x48,
0x61, 0x0e, 0x17, 0xbb, 0x11, 0x17, 0xeb, 0x19, 0x92, 0x2a, 0x49, 0x16, 0x8c, 0x77, 0x43, 0x30,
0x36, 0x72, 0x0f, 0x2d, 0x43, 0xc6, 0xe3, 0x14, 0x19, 0x21, 0x77, 0x3b, 0x05, 0x68, 0xfc, 0x36,
0x8d, 0x46, 0xc9, 0xb7, 0x6b, 0x19, 0x6d, 0x21, 0x1b, 0xbf, 0x49, 0xb2, 0x71, 0x23, 0x43, 0x64,
0x15, 0x0b, 0x9f, 0x84, 0xe3, 0x81, 0xb8, 0x7a, 0x99, 0x48, 0x13, 0xb7, 0x9f, 0xf9, 0xbe, 0xeb,
0x2b, 0x7a, 0xc9, 0x8e, 0xd1, 0x11, 0x8c, 0x89, 0xe3, 0xeb, 0x13, 0x20, 0x45, 0x4e, 0x24, 0xa2,
0xcb, 0xf8, 0xa5, 0x14, 0x6b, 0x91, 0xa5, 0x49, 0x3e, 0x35, 0x14, 0x9f, 0x12, 0x7c, 0x2d, 0xa7,
0xf8, 0x4a, 0x6e, 0xc3, 0xce, 0xdc, 0x0c, 0xb8, 0xdc, 0xe6, 0x30, 0x05, 0xac, 0x6d, 0x31, 0x21,
0xf7, 0x27, 0xc9, 0x75, 0x0f, 0x76, 0x13, 0xb6, 0xa6, 0xe7, 0x0d, 0x91, 0x22, 0x15, 0xa4, 0x48,
0x33, 0xb2, 0x3e, 0xf1, 0xbc, 0xbe, 0x19, 0xcc, 0x8c, 0xe3, 0x78, 0xff, 0x31, 0xbb, 0x09, 0x54,
0xc6, 0xae, 0x25, 0xb7, 0xb5, 0x49, 0xb1, 0x2d, 0x78, 0x3e, 0x77, 0xa7, 0xca, 0x33, 0xd1, 0x34,
0x7e, 0x2b, 0xc5, 0xda, 0x98, 0xdd, 0x79, 0xda, 0x53, 0xb5, 0x5b, 0x21, 0xde, 0xe8, 0xdd, 0xff,
0xe7, 0xe3, 0x8d, 0xb5, 0x7f, 0x3f, 0xde, 0xe8, 0x24, 0xea, 0x21, 0xce, 0x1c, 0x8b, 0xf9, 0x0b,
0xdb, 0xe1, 0xdd, 0xa9, 0x7b, 0xef, 0xbd, 0xed, 0xb3, 0xae, 0x50, 0x1c, 0xf6, 0x2e, 0x38, 0x0b,
0xd4, 0xf9, 0x28, 0x0f, 0xb4, 0xc8, 0x03, 0x72, 0x13, 0x2a, 0xdc, 0x9c, 0x86, 0xa8, 0x0a, 0x61,
0xf8, 0xe2, 0xcd, 0x2b, 0xd3, 0xf6, 0x29, 0x4e, 0x19, 0xbf, 0x96, 0x04, 0x9a, 0x52, 0xf7, 0xe2,
0x8b, 0xba, 0xd8, 0x04, 0x6d, 0x6a, 0x06, 0x78, 0xfc, 0x1a, 0x15, 0x4d, 0x31, 0x32, 0x61, 0x0c,
0x71, 0xa1, 0x51, 0xd1, 0x34, 0xfe, 0x2c, 0xc7, 0xf1, 0x12, 0xa5, 0xaf, 0x4b, 0x1e, 0xee, 0x81,
0x6e, 0x3b, 0x16, 0x5b, 0xa1, 0x8b, 0x1a, 0x95, 0x1d, 0xd2, 0x93, 0x69, 0x56, 0xfb, 0x4c, 0xb7,
0x31, 0x31, 0x3f, 0x0f, 0x13, 0x73, 0xe5, 0x33, 0x57, 0x91, 0x72, 0xb1, 0x8e, 0xe7, 0xbb, 0xee,
0x04, 0xf7, 0xf6, 0x59, 0xeb, 0xa0, 0x3c, 0x91, 0x3a, 0xaa, 0xa9, 0xa4, 0xac, 0x4e, 0xb7, 0x16,
0x87, 0xe0, 0xcf, 0xa2, 0x30, 0x48, 0x12, 0xec, 0x4b, 0x7e, 0x5b, 0x63, 0x37, 0x8e, 0xff, 0x08,
0x6e, 0xc6, 0x1e, 0x90, 0xcb, 0xd4, 0x92, 0x15, 0x52, 0x9a, 0x47, 0xe4, 0x2b, 0xd0, 0x2d, 0x7b,
0x32, 0x29, 0xae, 0x11, 0xe4, 0xb4, 0xf1, 0x7b, 0x19, 0xaa, 0x32, 0xc1, 0x93, 0x6b, 0x82, 0xfd,
0xa6, 0xed, 0x0c, 0x6d, 0x2b, 0x64, 0x0e, 0xf6, 0x07, 0x56, 0xe2, 0xd0, 0xca, 0xa9, 0x43, 0x23,
0x50, 0xe1, 0xf6, 0x82, 0x29, 0x5c, 0x60, 0x9b, 0x5c, 0x85, 0x9a, 0xb3, 0x5c, 0x0c, 0xf9, 0x4a,
0x06, 0xa6, 0x4e, 0xab, 0xce, 0x72, 0x71, 0xb6, 0x0a, 0xc8, 0x11, 0x6c, 0x26, 0xe0, 0x61, 0x5b,
0x2a, 0xa9, 0x6d, 0x29, 0xd7, 0xd0, 0xef, 0xc1, 0x29, 0x5d, 0x8f, 0x30, 0x32, 0xb0, 0x48, 0x07,
0x90, 0x2a, 0x43, 0x99, 0x38, 0x24, 0x6d, 0xaa, 0x48, 0x9b, 0x2d, 0x31, 0xae, 0x32, 0x8b, 0xa8,
0x5e, 0xae, 0x43, 0x43, 0x9c, 0xa4, 0x34, 0xa9, 0xa1, 0x49, 0x5d, 0x0c, 0xe0, 0xe4, 0x2d, 0xd8,
0x8e, 0x8b, 0x0f, 0x69, 0x52, 0x97, 0xab, 0xc4, 0xc3, 0x68, 0x78, 0x0d, 0xea, 0x11, 0xd5, 0x1a,
0x68, 0x51, 0x33, 0x15, 0xcc, 0x06, 0x50, 0x53, 0x2e, 0xe6, 0x56, 0x4f, 0xb7, 0x41, 0xf7, 0x4c,
0x9f, 0x07, 0xaa, 0x68, 0x08, 0x73, 0xda, 0x2b, 0xd3, 0x17, 0x75, 0xab, 0xaa, 0xa1, 0xa4, 0x89,
0x71, 0x0c, 0x9b, 0xa9, 0x71, 0x71, 0xfd, 0xb8, 0xcb, 0xcd, 0x39, 0xae, 0xa8, 0x53, 0xd9, 0x89,
0x7e, 0xa6, 0x1c, 0xff, 0x8c, 0xf1, 0x18, 0x1a, 0xd1, 0x37, 0x14, 0x47, 0xed, 0x2d, 0x47, 0xc3,
0xb0, 0x14, 0xde, 0xa0, 0x55, 0x6f, 0x39, 0x7a, 0x21, 0xab, 0x61, 0xcf, 0x7d, 0xaf, 0x2a, 0x39,
0x8d, 0xca, 0x8e, 0xf1, 0x04, 0xea, 0x61, 0xa5, 0x55, 0x2c, 0x2d, 0xf8, 0xd4, 0xc6, 0x1f, 0x25,
0xa8, 0x4a, 0xf8, 0xe5, 0x54, 0xdf, 0x5f, 0x63, 0x59, 0xba, 0x64, 0x43, 0xb1, 0x69, 0x14, 0x6e,
0x45, 0x2f, 0x3e, 0x29, 0x3a, 0x3c, 0xbb, 0xf0, 0x18, 0x6d, 0xa0, 0x95, 0x68, 0x92, 0x9b, 0xb0,
0x21, 0x25, 0x01, 0xf7, 0x6d, 0x27, 0x0c, 0xfd, 0x75, 0x1c, 0x7b, 0x8d, 0x43, 0xe2, 0x93, 0x4a,
0x13, 0xdb, 0xe1, 0x0a, 0x72, 0x75, 0x1c, 0x18, 0x38, 0xdc, 0xb8, 0x0e, 0x15, 0x5c, 0x07, 0xa0,
0xfa, 0xfa, 0x8c, 0x0e, 0x5e, 0x7e, 0xdf, 0x5c, 0x23, 0x35, 0xd0, 0x06, 0x2f, 0xcf, 0x9a, 0xa5,
0xa3, 0x0f, 0x3a, 0x6c, 0x9f, 0xf4, 0x9e, 0x0e, 0x4e, 0x3c, 0x6f, 0x6e, 0x8f, 0x4d, 0xcc, 0x3b,
0x5d, 0xa8, 0x60, 0x66, 0xcd, 0x79, 0xe0, 0xb6, 0xf3, 0x4a, 0x3c, 0x72, 0x04, 0x3a, 0x26, 0x58,
0x92, 0xf7, 0xce, 0x6d, 0xe7, 0x56, 0x7a, 0xe2, 0x47, 0x64, 0x0a, 0xbe, 0xfc, 0xdc, 0x6d, 0xe7,
0x95, 0x7b, 0xe4, 0x3b, 0x68, 0xc4, 0xa9, 0xb1, 0xe8, 0xd1, 0xdb, 0x2e, 0x2c, 0xfc, 0x84, 0x3e,
0x4e, 0x8f, 0x45, 0x4f, 0xdf, 0x76, 0x61, 0xf5, 0x47, 0x1e, 0x41, 0x2d, 0xcc, 0x5c, 0xf9, 0x0f,
0xe0, 0x76, 0x41, 0x01, 0x28, 0x8e, 0x47, 0xe6, 0x93, 0xbc, 0x77, 0x6d, 0x3b, 0xb7, 0xa6, 0x23,
0x0f, 0xa1, 0xaa, 0x50, 0x9a, 0xfb, 0x76, 0x6e, 0xe7, 0x57, 0x8e, 0x62, 0x93, 0xf1, 0x13, 0xa8,
0xe8, 0x51, 0xdc, 0x2e, 0xac, 0x09, 0xc9, 0x09, 0x40, 0xe2, 0xed, 0x53, 0xf8, 0x34, 0x6e, 0x17,
0x57, 0x86, 0x44, 0xdc, 0x9d, 0xe8, 0xf5, 0x91, 0xff, 0x40, 0x6e, 0x17, 0x15, 0x87, 0xa3, 0x2a,
0xfe, 0xd3, 0xe5, 0xc1, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0x4d, 0x6a, 0x92, 0xbf, 0x11,
0x00, 0x00,
// 1756 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcd, 0x6e, 0x1c, 0xc7,
0x11, 0xe6, 0xee, 0xec, 0x6f, 0xf1, 0x67, 0x97, 0x4d, 0xca, 0x5a, 0xad, 0x0e, 0x96, 0x07, 0x08,
0x4c, 0xc9, 0x16, 0x69, 0xd3, 0x70, 0x20, 0xda, 0x41, 0x00, 0x2d, 0x29, 0x69, 0x17, 0x06, 0x14,
0x65, 0x48, 0xf8, 0xba, 0xe9, 0x9d, 0x69, 0xee, 0x0e, 0xb4, 0x3b, 0x33, 0x9e, 0xe9, 0xa5, 0x97,
0x42, 0x1e, 0xc1, 0xc8, 0x35, 0xe7, 0xe4, 0x12, 0x20, 0x2f, 0x90, 0x63, 0x6e, 0x41, 0x9e, 0xc1,
0x07, 0x3f, 0x4b, 0x50, 0xd5, 0x3d, 0xbf, 0x9c, 0x31, 0x02, 0x1d, 0x74, 0x19, 0x74, 0x77, 0xd5,
0x57, 0x53, 0xdd, 0x5d, 0xfd, 0x55, 0x75, 0xc3, 0xbe, 0xbc, 0x0d, 0x44, 0x74, 0x42, 0xdf, 0xe3,
0x20, 0xf4, 0xa5, 0xcf, 0x9a, 0xd4, 0x19, 0x3e, 0x9d, 0xbb, 0x72, 0xb1, 0x9e, 0x1d, 0xdb, 0xfe,
0xea, 0x64, 0xee, 0xcf, 0xfd, 0x13, 0x92, 0xce, 0xd6, 0xd7, 0xd4, 0xa3, 0x0e, 0xb5, 0x14, 0xca,
0xfc, 0x4f, 0x03, 0xda, 0x96, 0xf8, 0x61, 0x2d, 0x22, 0xc9, 0x8e, 0xa0, 0x21, 0xec, 0x85, 0x3f,
0xa8, 0x3d, 0xaa, 0x1d, 0x6d, 0x9f, 0xb2, 0x63, 0x65, 0x5d, 0x4b, 0x5f, 0xd8, 0x0b, 0x7f, 0xbc,
0x65, 0x91, 0x06, 0xfb, 0x0c, 0x9a, 0xd7, 0xcb, 0x75, 0xb4, 0x18, 0xd4, 0x49, 0xf5, 0x20, 0xaf,
0xfa, 0x12, 0x45, 0xe3, 0x2d, 0x4b, 0xe9, 0xa0, 0x59, 0xd7, 0xbb, 0xf6, 0x07, 0x46, 0x99, 0xd9,
0x89, 0x77, 0x4d, 0x66, 0x51, 0x83, 0x3d, 0x03, 0x88, 0x84, 0x9c, 0xfa, 0x81, 0x74, 0x7d, 0x6f,
0xd0, 0x20, 0xfd, 0xfb, 0x79, 0xfd, 0x4b, 0x21, 0xff, 0x40, 0xe2, 0xf1, 0x96, 0xd5, 0x8d, 0xe2,
0x0e, 0x22, 0x1d, 0xb1, 0x74, 0x6f, 0x44, 0x38, 0x95, 0x9b, 0x41, 0xb3, 0x0c, 0x79, 0xa1, 0xe4,
0x57, 0x1b, 0x44, 0x3a, 0x71, 0x87, 0x9d, 0x42, 0xc7, 0x5e, 0x08, 0xfb, 0x2d, 0xe2, 0x5a, 0x84,
0xbb, 0x97, 0xc7, 0x9d, 0xa3, 0x94, 0x50, 0x6d, 0x5b, 0x35, 0xd9, 0x31, 0xb4, 0x6c, 0x7f, 0xb5,
0x72, 0xe5, 0xa0, 0x4d, 0x88, 0xc3, 0x02, 0x82, 0x64, 0xe3, 0x2d, 0x4b, 0x6b, 0xe1, 0x72, 0xfd,
0xb0, 0x16, 0xe1, 0xed, 0xa0, 0x53, 0xb6, 0x5c, 0x7f, 0x44, 0x11, 0x2e, 0x17, 0xe9, 0xe0, 0x54,
0x5c, 0xcf, 0x95, 0x53, 0x7b, 0xc1, 0x5d, 0x6f, 0xd0, 0x2d, 0x9b, 0xca, 0xc4, 0x73, 0xe5, 0x39,
0x8a, 0x71, 0x2a, 0x6e, 0xdc, 0x61, 0xdf, 0xc2, 0xf6, 0x4c, 0xcc, 0x5d, 0x6f, 0x3a, 0x5b, 0xfa,
0xf6, 0xdb, 0x01, 0x10, 0x74, 0x90, 0x87, 0x8e, 0x50, 0x61, 0x84, 0xf2, 0xf1, 0x96, 0x05, 0xb3,
0xa4, 0xc7, 0xbe, 0x86, 0xae, 0xf0, 0x1c, 0x0d, 0xdd, 0x26, 0xe8, 0x47, 0x85, 0x08, 0xf0, 0x9c,
0x18, 0xd8, 0x11, 0xba, 0x3d, 0x6a, 0x43, 0xf3, 0x86, 0x2f, 0xd7, 0xc2, 0xfc, 0x14, 0xb6, 0x33,
0x91, 0xc2, 0x06, 0xd0, 0x5e, 0x89, 0x28, 0xe2, 0x73, 0x41, 0xe1, 0xd4, 0xb5, 0xe2, 0xae, 0xb9,
0x07, 0x3b, 0xd9, 0x38, 0xc9, 0x00, 0x31, 0x16, 0x10, 0x78, 0x23, 0xc2, 0x08, 0x03, 0x40, 0x03,
0x75, 0xd7, 0xfc, 0x06, 0xfa, 0xc5, 0x20, 0x60, 0x7d, 0x30, 0xde, 0x8a, 0x5b, 0xad, 0x89, 0x4d,
0x76, 0xa8, 0x1d, 0xa2, 0xd0, 0xec, 0x5a, 0xda, 0x3b, 0x33, 0xc1, 0x26, 0x61, 0xc0, 0xf6, 0xa0,
0x2e, 0x37, 0x04, 0xdd, 0xb1, 0xea, 0x72, 0x63, 0x3e, 0x82, 0xbd, 0xfc, 0x96, 0xdf, 0xd1, 0x70,
0x12, 0xd7, 0x69, 0xcf, 0x18, 0x83, 0x86, 0xc3, 0x25, 0xd7, 0x1a, 0xd4, 0xc6, 0xb1, 0x80, 0xcb,
0x85, 0xfe, 0x3d, 0xb5, 0xd9, 0x47, 0xd0, 0x5a, 0x08, 0x77, 0xbe, 0x90, 0x74, 0x06, 0x0c, 0x4b,
0xf7, 0xd0, 0xd7, 0x20, 0xf4, 0x6f, 0x04, 0x85, 0x7a, 0xc7, 0x52, 0x1d, 0xb3, 0x07, 0xbb, 0xb9,
0x40, 0x32, 0x2f, 0x12, 0xe7, 0x93, 0x8d, 0x67, 0x5f, 0x00, 0xdc, 0xf0, 0xa5, 0xeb, 0x70, 0xe9,
0x87, 0xd1, 0xa0, 0xf6, 0xc8, 0x38, 0xda, 0x3e, 0xed, 0xeb, 0xfd, 0xfa, 0x3e, 0x16, 0x58, 0x19,
0x1d, 0xf3, 0xdf, 0x35, 0xd8, 0xbf, 0x13, 0x04, 0xe8, 0xee, 0x82, 0x47, 0x8b, 0x78, 0x0a, 0xd8,
0x66, 0xbf, 0x41, 0x77, 0xb9, 0x23, 0x42, 0x7d, 0xbc, 0x77, 0xb5, 0xdd, 0x31, 0x0d, 0x5a, 0x5a,
0xc8, 0x3e, 0x83, 0x7d, 0x3e, 0x8b, 0x84, 0x27, 0xa7, 0x19, 0x4f, 0x8c, 0x47, 0xc6, 0x51, 0xd3,
0xea, 0x2b, 0x41, 0xe2, 0x48, 0xc4, 0x46, 0x70, 0x38, 0xbb, 0x7d, 0xc7, 0x3d, 0xe9, 0x7a, 0x22,
0xab, 0xdf, 0x20, 0xcf, 0x7b, 0xfa, 0x0f, 0x2f, 0x6e, 0x5c, 0x47, 0x78, 0xb6, 0xb0, 0x0e, 0x12,
0xe5, 0xd4, 0x86, 0xf9, 0x18, 0x7a, 0x85, 0x50, 0xcc, 0xac, 0x6c, 0x2d, 0xbb, 0xb2, 0xe6, 0x4f,
0x4d, 0xe8, 0x58, 0x22, 0x0a, 0x7c, 0x2f, 0x12, 0xec, 0x19, 0x74, 0xc5, 0xc6, 0x16, 0x8a, 0x55,
0x6a, 0x85, 0x53, 0xa1, 0x74, 0x5e, 0xc4, 0x72, 0x3c, 0x51, 0x89, 0x32, 0x7b, 0xac, 0x19, 0xb1,
0x48, 0x73, 0x1a, 0x94, 0xa5, 0xc4, 0xcf, 0x63, 0x4a, 0x34, 0x0a, 0x94, 0xa0, 0x74, 0x0b, 0x9c,
0xf8, 0x58, 0x73, 0x62, 0xa3, 0xd4, 0x70, 0x8e, 0x14, 0xcf, 0x72, 0xa4, 0xd8, 0x2c, 0x75, 0xbf,
0x82, 0x15, 0xcf, 0x72, 0xac, 0xd8, 0x2a, 0x85, 0x56, 0xd0, 0xe2, 0x57, 0x19, 0x5a, 0x6c, 0x17,
0xd8, 0x40, 0x01, 0x4b, 0x78, 0xf1, 0x24, 0xe1, 0xc5, 0x4e, 0x81, 0x49, 0x35, 0xa4, 0x48, 0x8c,
0x9f, 0xc7, 0xc4, 0xd8, 0x2d, 0x5d, 0xb4, 0x02, 0x33, 0x9e, 0xe5, 0x98, 0x11, 0x4a, 0xa7, 0x53,
0x41, 0x8d, 0xbf, 0xcb, 0x53, 0xa3, 0xe2, 0xb7, 0x07, 0x05, 0x6c, 0x25, 0x37, 0xfe, 0x36, 0xcb,
0x8d, 0x3b, 0x05, 0x46, 0xd6, 0xb1, 0xf0, 0xab, 0xe4, 0xf8, 0x18, 0x8f, 0x5e, 0x21, 0xd2, 0xf0,
0xf4, 0x8b, 0x30, 0xf4, 0x43, 0xcd, 0x5e, 0xaa, 0x63, 0x1e, 0x21, 0xc7, 0xa4, 0xf1, 0xf5, 0x2b,
0x44, 0x4a, 0x3c, 0x91, 0x89, 0x2e, 0xf3, 0xaf, 0xb5, 0x14, 0x4b, 0x5c, 0x9a, 0xe5, 0xa7, 0xae,
0xe6, 0xa7, 0x0c, 0xbf, 0xd6, 0x73, 0xfc, 0xca, 0x9e, 0xc0, 0xfe, 0x92, 0x47, 0x52, 0x4d, 0x73,
0x9a, 0x23, 0xac, 0x1e, 0x0a, 0xd4, 0xfc, 0x14, 0x73, 0x3d, 0x85, 0x83, 0x8c, 0x2e, 0x0f, 0x82,
0x29, 0xb1, 0x48, 0x83, 0x58, 0xa4, 0x9f, 0x68, 0x3f, 0x0f, 0x82, 0x31, 0x8f, 0x16, 0xe6, 0x59,
0x3a, 0xff, 0x94, 0xbb, 0x19, 0x34, 0x6c, 0xdf, 0x51, 0xd3, 0xda, 0xb5, 0xa8, 0x8d, 0x7c, 0xbe,
0xf4, 0xe7, 0xda, 0x33, 0x6c, 0x9a, 0x7f, 0xaf, 0xa5, 0xd8, 0x94, 0xbb, 0xcb, 0xb0, 0x17, 0x7a,
0xb6, 0x08, 0xde, 0x19, 0x7d, 0xf1, 0xdf, 0x5f, 0x3e, 0xde, 0xfa, 0xf9, 0x97, 0x8f, 0x8f, 0x32,
0xf5, 0x90, 0x14, 0x9e, 0x23, 0xc2, 0x95, 0xeb, 0xc9, 0x93, 0xb9, 0xff, 0xf4, 0x47, 0x37, 0x14,
0x27, 0x88, 0x38, 0x1e, 0xdd, 0x4a, 0x11, 0xe9, 0xf5, 0xd1, 0x1e, 0x18, 0x89, 0x07, 0xec, 0x13,
0x68, 0x48, 0x3e, 0x8f, 0xa9, 0x2a, 0x26, 0xc3, 0xef, 0xbe, 0x7f, 0xc3, 0xdd, 0xd0, 0x22, 0x91,
0xf9, 0xb7, 0x1a, 0x52, 0x53, 0xee, 0x5c, 0x7c, 0x50, 0x17, 0xfb, 0x60, 0xcc, 0x79, 0x44, 0xcb,
0x6f, 0x58, 0xd8, 0xc4, 0x91, 0x6b, 0x21, 0x88, 0x2e, 0x0c, 0x0b, 0x9b, 0xe6, 0xbf, 0xea, 0x69,
0xbc, 0x24, 0xe9, 0xeb, 0x8e, 0x87, 0x87, 0xd0, 0x74, 0x3d, 0x47, 0x6c, 0xc8, 0x45, 0xc3, 0x52,
0x1d, 0x36, 0x52, 0x69, 0xd6, 0x78, 0x4f, 0xb7, 0x29, 0x31, 0xbf, 0x8c, 0x13, 0x73, 0xe3, 0x3d,
0xad, 0x28, 0x38, 0xda, 0x09, 0x42, 0xdf, 0xbf, 0xa6, 0xb9, 0xbd, 0x97, 0x1d, 0x82, 0x67, 0x52,
0x47, 0x2b, 0x97, 0x94, 0xf5, 0xea, 0xb6, 0xd3, 0x10, 0xfc, 0x33, 0x16, 0x06, 0x59, 0x06, 0xfb,
0x90, 0x7b, 0x6b, 0x1e, 0xa4, 0xf1, 0x9f, 0x90, 0x9b, 0x79, 0x08, 0xec, 0x2e, 0x6b, 0x99, 0x7f,
0xa9, 0x61, 0xa5, 0x90, 0x27, 0x24, 0xf6, 0x04, 0xda, 0xf6, 0x82, 0x7b, 0x73, 0x51, 0x5d, 0x26,
0xc4, 0x0a, 0xec, 0x35, 0xdc, 0xb7, 0x11, 0xec, 0x45, 0xeb, 0x68, 0x1a, 0xf0, 0x90, 0xaf, 0xa6,
0x31, 0xb6, 0x9e, 0x4b, 0x02, 0xe7, 0xb1, 0xd6, 0x1b, 0x54, 0x8a, 0xac, 0x7b, 0x76, 0x6e, 0xe0,
0x5c, 0x81, 0xcc, 0x9f, 0x6b, 0xd0, 0x2b, 0xa8, 0xb2, 0x11, 0xec, 0x2b, 0xd6, 0x88, 0xdc, 0x77,
0x42, 0xfd, 0x24, 0xd2, 0x59, 0x39, 0xb6, 0x4e, 0x8e, 0x5f, 0xba, 0xef, 0x84, 0xb6, 0xde, 0x9b,
0xe5, 0x07, 0xd8, 0x19, 0xec, 0xc9, 0x4d, 0xce, 0x40, 0x3e, 0x43, 0x5f, 0x6d, 0x32, 0xe8, 0x1d,
0x99, 0xe9, 0xb1, 0x31, 0x1c, 0xa8, 0xdf, 0xcf, 0xfd, 0x28, 0x72, 0x83, 0x18, 0x6f, 0xe4, 0xb2,
0x09, 0x39, 0xf0, 0x8a, 0x14, 0xb4, 0x11, 0xe5, 0x73, 0x76, 0xc8, 0xfc, 0x13, 0xf4, 0x0a, 0x8e,
0xb2, 0x87, 0xd0, 0x5d, 0xf1, 0xcd, 0x74, 0x86, 0x1b, 0x4a, 0x73, 0x6a, 0x5a, 0x9d, 0x15, 0xdf,
0xd0, 0x06, 0xb3, 0xfb, 0xd0, 0x46, 0xa1, 0xdc, 0x28, 0x6f, 0x9b, 0x56, 0x6b, 0xc5, 0x37, 0x57,
0x9b, 0x44, 0x80, 0x27, 0x58, 0xd7, 0x87, 0x2b, 0xbe, 0x79, 0xc5, 0x23, 0xf3, 0x02, 0x76, 0xb2,
0x33, 0xf9, 0xbf, 0xcc, 0xa3, 0x95, 0x7a, 0xce, 0xca, 0x4b, 0xd8, 0xbf, 0x33, 0x1f, 0xf6, 0x25,
0xdc, 0x53, 0xcb, 0x10, 0xf0, 0x50, 0xaa, 0x95, 0xcc, 0x9a, 0x65, 0x24, 0x7c, 0xc3, 0x43, 0x89,
0xbf, 0xa7, 0x1f, 0x98, 0xff, 0xa8, 0x43, 0x4b, 0x95, 0x80, 0xec, 0x01, 0x56, 0x07, 0xdc, 0xf5,
0xa6, 0xae, 0x13, 0x67, 0x25, 0xea, 0x4f, 0x9c, 0xcc, 0xb1, 0xaa, 0xe7, 0x8e, 0x15, 0x83, 0x86,
0x74, 0x57, 0x42, 0xcf, 0x90, 0xda, 0xe8, 0xb2, 0xb7, 0x5e, 0xd1, 0x8a, 0x34, 0xd4, 0x8a, 0x78,
0xeb, 0x15, 0xae, 0xc8, 0x29, 0xec, 0x66, 0xd2, 0x8b, 0xeb, 0xe8, 0xb2, 0x67, 0x2f, 0xbb, 0x3d,
0x93, 0x0b, 0x6b, 0x3b, 0x49, 0x34, 0x13, 0x87, 0x1d, 0x01, 0xe5, 0x9d, 0xa9, 0x2a, 0x2d, 0x54,
0x3e, 0x6a, 0x51, 0x3e, 0xda, 0xc3, 0x71, 0x5d, 0x7b, 0x60, 0x7d, 0xfb, 0x10, 0xba, 0x78, 0xd6,
0x94, 0x4a, 0x9b, 0x54, 0x3a, 0x38, 0x40, 0xc2, 0x4f, 0xa1, 0x97, 0x96, 0xa7, 0x4a, 0xa5, 0xa3,
0xac, 0xa4, 0xc3, 0xa4, 0xf8, 0x00, 0x3a, 0x49, 0xde, 0xeb, 0x92, 0x46, 0x9b, 0xeb, 0x74, 0x37,
0x81, 0xb6, 0x76, 0xb1, 0xb4, 0xbe, 0x7e, 0x02, 0x4d, 0x5c, 0xf5, 0x38, 0x68, 0xe3, 0xaa, 0x87,
0x56, 0x5b, 0x48, 0x5d, 0x65, 0x2b, 0x15, 0xf3, 0x0c, 0x76, 0x73, 0xe3, 0x48, 0xd0, 0xd2, 0x97,
0x7c, 0xa9, 0x37, 0x4a, 0x75, 0x92, 0xdf, 0xd4, 0xd3, 0xdf, 0x98, 0xdf, 0x40, 0x37, 0x39, 0xe2,
0xb8, 0xd4, 0xc1, 0x7a, 0x36, 0x8d, 0x2f, 0x4b, 0x3b, 0x56, 0x2b, 0x58, 0xcf, 0xbe, 0x53, 0xf7,
0xa5, 0xc0, 0xff, 0x51, 0xd7, 0xfa, 0x86, 0xa5, 0x3a, 0xe6, 0xb7, 0xd0, 0x89, 0x6b, 0xf1, 0x6a,
0x68, 0xc5, 0x56, 0x9b, 0xff, 0xac, 0x41, 0x4b, 0xa5, 0xc7, 0x92, 0xfb, 0xd9, 0x97, 0x74, 0x71,
0x59, 0x8b, 0x29, 0x4e, 0x9a, 0x80, 0x7b, 0xc9, 0x9b, 0x80, 0x02, 0x1d, 0x5f, 0xdd, 0x06, 0xc2,
0xea, 0x92, 0x16, 0x36, 0xd9, 0x27, 0xb0, 0xa3, 0x20, 0x91, 0x0c, 0x5d, 0x2f, 0x26, 0xc7, 0x6d,
0x1a, 0xbb, 0xa4, 0x21, 0xdc, 0x52, 0xa5, 0xe2, 0x7a, 0x52, 0xa7, 0xc1, 0x0e, 0x0d, 0x4c, 0x3c,
0x69, 0x3e, 0x84, 0x06, 0xd9, 0x01, 0x68, 0x5d, 0x5e, 0x59, 0x93, 0xd7, 0xaf, 0xfa, 0x5b, 0xac,
0x0d, 0xc6, 0xe4, 0xf5, 0x55, 0xbf, 0x76, 0xfa, 0x53, 0x13, 0x7a, 0xcf, 0x47, 0xe7, 0x93, 0xe7,
0x41, 0xb0, 0x74, 0x6d, 0x4e, 0x95, 0xc9, 0x09, 0x34, 0xa8, 0xf6, 0x2a, 0x79, 0x02, 0x19, 0x96,
0x5d, 0x02, 0xd8, 0x29, 0x34, 0xa9, 0x04, 0x63, 0x65, 0x2f, 0x21, 0xc3, 0xd2, 0xbb, 0x00, 0xfe,
0x44, 0x15, 0x69, 0x77, 0x1f, 0x44, 0x86, 0x65, 0x17, 0x02, 0xf6, 0x7b, 0xe8, 0xa6, 0xc5, 0x53,
0xd5, 0xb3, 0xc8, 0xb0, 0xf2, 0x6a, 0x80, 0xf8, 0xb4, 0x80, 0xaa, 0x7a, 0x1c, 0x19, 0x56, 0xde,
0x0f, 0xd8, 0x33, 0x68, 0xc7, 0xb5, 0x4d, 0xf9, 0x13, 0xc9, 0xb0, 0xe2, 0x8a, 0x80, 0xcb, 0xa3,
0x2a, 0x8e, 0xb2, 0x97, 0x8f, 0x61, 0x69, 0xd5, 0xcf, 0xbe, 0x86, 0x96, 0x4e, 0xb6, 0xa5, 0xaf,
0x2b, 0xc3, 0xf2, 0xbb, 0x05, 0x4e, 0x32, 0xbd, 0x24, 0x57, 0x3d, 0x9b, 0x0c, 0x2b, 0x6f, 0x0d,
0xec, 0x39, 0x40, 0xe6, 0x76, 0x5c, 0xf9, 0x78, 0x32, 0xac, 0xbe, 0x3b, 0x30, 0x3c, 0x3b, 0xc9,
0xfd, 0xb4, 0xfc, 0x09, 0x65, 0x58, 0x75, 0x7d, 0x98, 0xb5, 0xe8, 0x59, 0xee, 0xab, 0xff, 0x05,
0x00, 0x00, 0xff, 0xff, 0x2b, 0x22, 0xd6, 0xe4, 0xe1, 0x13, 0x00, 0x00,
}

+ 29
- 1
types/types.proto View File

@ -157,7 +157,35 @@ message ResponseBeginBlock{
}
message ResponseEndBlock{
repeated Validator diffs = 1;
repeated Validator changes = 1;
ConsensusParams consensus_param_changes = 2;
}
message ConsensusParams{
BlockSizeParams block_size_params = 1;
TxSizeParams tx_size_params = 2;
BlockGossipParams block_gossip_params = 3;
}
// BlockSizeParams contain limits on the block size.
message BlockSizeParams{
// NOTE: must not be 0 nor greater than 100MB
int32 max_bytes = 1;
int32 max_txs = 2;
int64 max_gas = 3;
}
// TxSizeParams contain limits on the tx size.
message TxSizeParams {
int32 max_bytes = 1;
int64 max_gas = 2;
}
// BlockGossipParams determine consensus critical
// elements of how blocks are gossiped
message BlockGossipParams {
// Note: must not be 0
int32 block_part_size_bytes = 1;
}
//----------------------------------------


Loading…
Cancel
Save