updates -> validator_set_updates

ConsensusParamChanges -> ConsensusParamUpdates
This commit is contained in:
Anton Kaliaev 2017-12-19 12:13:45 -06:00
parent eb6d412a82
commit 66296fe11a
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
5 changed files with 123 additions and 122 deletions

View File

@ -185,8 +185,8 @@ Here, we describe the requests and responses as function arguments and return va
* __Arguments__:
* `Height (int64)`: The block height that ended
* __Returns__:
* `Updates ([]Validator)`: Updated validators with new voting powers (0 to remove)
* `ConsensusParamChanges (ConsensusParams)`: Changes to consensus-critical time/size parameters to tendermint core
* `ValidatorSetUpdates ([]Validator)`: Changes to validator set (set voting power to 0 to remove)
* `ConsensusParamUpdates (ConsensusParams)`: Changes to consensus-critical time/size parameters
* __Usage__:<br/>
Signals the end of a block. Called prior to each Commit after all transactions. Validator set is updated with the result.

View File

@ -188,7 +188,7 @@ func makeApplyBlock(t *testing.T, dummy types.Application, heightInt int, diff [
resEndBlock := dummy.EndBlock(types.RequestEndBlock{header.Height})
dummy.Commit()
valsEqual(t, diff, resEndBlock.Updates)
valsEqual(t, diff, resEndBlock.ValidatorSetUpdates)
}

View File

@ -28,7 +28,7 @@ type PersistentDummyApplication struct {
app *DummyApplication
// validator set
updates []*types.Validator
valSetUpdates []*types.Validator
logger log.Logger
}
@ -71,7 +71,7 @@ func (app *PersistentDummyApplication) DeliverTx(tx []byte) types.ResponseDelive
// format is "val:pubkey/power"
if isValidatorTx(tx) {
// update validators in the merkle tree
// and in app.updates
// and in app.valSetUpdates
return app.execValidatorTx(tx)
}
@ -119,13 +119,13 @@ func (app *PersistentDummyApplication) InitChain(req types.RequestInitChain) typ
// Track the block hash and header information
func (app *PersistentDummyApplication) BeginBlock(req types.RequestBeginBlock) types.ResponseBeginBlock {
// reset valset changes
app.updates = make([]*types.Validator, 0)
app.valSetUpdates = make([]*types.Validator, 0)
return types.ResponseBeginBlock{}
}
// Update the validator set
func (app *PersistentDummyApplication) EndBlock(req types.RequestEndBlock) types.ResponseEndBlock {
return types.ResponseEndBlock{Updates: app.updates}
return types.ResponseEndBlock{ValidatorSetUpdates: app.valSetUpdates}
}
//---------------------------------------------
@ -216,7 +216,7 @@ func (app *PersistentDummyApplication) updateValidator(v *types.Validator) types
}
// we only update the changes array if we successfully updated the tree
app.updates = append(app.updates, v)
app.valSetUpdates = append(app.valSetUpdates, v)
return types.ResponseDeliverTx{Code: code.CodeTypeOK}
}

View File

@ -1398,7 +1398,7 @@ func (*ResponseBeginBlock) ProtoMessage() {}
func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{23} }
type ResponseEndBlock struct {
Updates []*Validator `protobuf:"bytes,1,rep,name=updates" json:"updates,omitempty"`
ValidatorSetUpdates []*Validator `protobuf:"bytes,1,rep,name=validator_set_updates,json=validatorSetUpdates" json:"validator_set_updates,omitempty"`
ConsensusParamUpdates *ConsensusParams `protobuf:"bytes,2,opt,name=consensus_param_updates,json=consensusParamUpdates" json:"consensus_param_updates,omitempty"`
}
@ -1407,9 +1407,9 @@ func (m *ResponseEndBlock) String() string { return proto.CompactText
func (*ResponseEndBlock) ProtoMessage() {}
func (*ResponseEndBlock) Descriptor() ([]byte, []int) { return fileDescriptorTypes, []int{24} }
func (m *ResponseEndBlock) GetUpdates() []*Validator {
func (m *ResponseEndBlock) GetValidatorSetUpdates() []*Validator {
if m != nil {
return m.Updates
return m.ValidatorSetUpdates
}
return nil
}
@ -2193,114 +2193,115 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("types/types.proto", fileDescriptorTypes) }
var fileDescriptorTypes = []byte{
// 1744 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcd, 0x8e, 0x1b, 0xc7,
0x11, 0x5e, 0xfe, 0x73, 0x8a, 0xfb, 0x43, 0xb5, 0x56, 0x16, 0x45, 0x1d, 0xbc, 0x1e, 0x20, 0x31,
0x57, 0xb6, 0x96, 0xf6, 0x1a, 0x0a, 0xb4, 0x76, 0x60, 0x64, 0xb9, 0x2b, 0x6b, 0x09, 0x03, 0x8a,
0x32, 0xbb, 0xf1, 0x21, 0x17, 0xa2, 0xc9, 0xe9, 0x25, 0x07, 0x22, 0x67, 0xc6, 0x33, 0xcd, 0x35,
0x57, 0xc8, 0x23, 0x18, 0xb9, 0xe6, 0x9c, 0x5c, 0x02, 0xe4, 0x05, 0x72, 0xcc, 0x2d, 0xc8, 0x33,
0xe4, 0xe0, 0x67, 0x09, 0xaa, 0xba, 0xe7, 0x77, 0x67, 0x0c, 0x43, 0x07, 0x5d, 0xc8, 0xee, 0xae,
0xfa, 0x7a, 0xaa, 0xab, 0xab, 0xbf, 0xaa, 0x6e, 0xb8, 0x27, 0x6f, 0x7d, 0x11, 0x0e, 0xe9, 0xf7,
0xc8, 0x0f, 0x3c, 0xe9, 0xb1, 0x06, 0x75, 0xfa, 0x4f, 0xe7, 0x8e, 0x5c, 0xac, 0xa7, 0x47, 0x33,
0x6f, 0x35, 0x9c, 0x7b, 0x73, 0x6f, 0x48, 0xd2, 0xe9, 0xfa, 0x9a, 0x7a, 0xd4, 0xa1, 0x96, 0x42,
0x99, 0xff, 0xa9, 0x43, 0xcb, 0x12, 0xdf, 0xaf, 0x45, 0x28, 0xd9, 0x00, 0xea, 0x62, 0xb6, 0xf0,
0x7a, 0x95, 0x83, 0xca, 0xa0, 0x73, 0xcc, 0x8e, 0xd4, 0xec, 0x5a, 0xfa, 0x62, 0xb6, 0xf0, 0x2e,
0xb6, 0x2c, 0xd2, 0x60, 0x9f, 0x40, 0xe3, 0x7a, 0xb9, 0x0e, 0x17, 0xbd, 0x2a, 0xa9, 0xde, 0xcf,
0xaa, 0x7e, 0x83, 0xa2, 0x8b, 0x2d, 0x4b, 0xe9, 0xe0, 0xb4, 0x8e, 0x7b, 0xed, 0xf5, 0x6a, 0x45,
0xd3, 0x8e, 0xdd, 0x6b, 0x9a, 0x16, 0x35, 0xd8, 0x73, 0x80, 0x50, 0xc8, 0x89, 0xe7, 0x4b, 0xc7,
0x73, 0x7b, 0x75, 0xd2, 0x7f, 0x98, 0xd5, 0xbf, 0x14, 0xf2, 0xf7, 0x24, 0xbe, 0xd8, 0xb2, 0x8c,
0x30, 0xea, 0x20, 0xd2, 0x16, 0x4b, 0xe7, 0x46, 0x04, 0x13, 0xb9, 0xe9, 0x35, 0x8a, 0x90, 0xe7,
0x4a, 0x7e, 0xb5, 0x41, 0xa4, 0x1d, 0x75, 0xd8, 0x31, 0xb4, 0x67, 0x0b, 0x31, 0x7b, 0x83, 0xb8,
0x26, 0xe1, 0x1e, 0x64, 0x71, 0x67, 0x28, 0x25, 0x54, 0x6b, 0xa6, 0x9a, 0xec, 0x08, 0x9a, 0x33,
0x6f, 0xb5, 0x72, 0x64, 0xaf, 0x45, 0x88, 0xfd, 0x1c, 0x82, 0x64, 0x17, 0x5b, 0x96, 0xd6, 0x42,
0x77, 0x7d, 0xbf, 0x16, 0xc1, 0x6d, 0xaf, 0x5d, 0xe4, 0xae, 0x3f, 0xa0, 0x08, 0xdd, 0x45, 0x3a,
0xb8, 0x14, 0xc7, 0x75, 0xe4, 0x64, 0xb6, 0xe0, 0x8e, 0xdb, 0x33, 0x8a, 0x96, 0x32, 0x76, 0x1d,
0x79, 0x86, 0x62, 0x5c, 0x8a, 0x13, 0x75, 0xd8, 0x57, 0xd0, 0x99, 0x8a, 0xb9, 0xe3, 0x4e, 0xa6,
0x4b, 0x6f, 0xf6, 0xa6, 0x07, 0x04, 0xed, 0x65, 0xa1, 0x23, 0x54, 0x18, 0xa1, 0xfc, 0x62, 0xcb,
0x82, 0x69, 0xdc, 0x63, 0xcf, 0xc0, 0x10, 0xae, 0xad, 0xa1, 0x1d, 0x82, 0x7e, 0x90, 0x8b, 0x00,
0xd7, 0x8e, 0x80, 0x6d, 0xa1, 0xdb, 0xa3, 0x16, 0x34, 0x6e, 0xf8, 0x72, 0x2d, 0xcc, 0x8f, 0xa1,
0x93, 0x8a, 0x14, 0xd6, 0x83, 0xd6, 0x4a, 0x84, 0x21, 0x9f, 0x0b, 0x0a, 0x27, 0xc3, 0x8a, 0xba,
0xe6, 0x2e, 0x6c, 0xa7, 0xe3, 0x24, 0x05, 0xc4, 0x58, 0x40, 0xe0, 0x8d, 0x08, 0x42, 0x0c, 0x00,
0x0d, 0xd4, 0x5d, 0xf3, 0x4b, 0xe8, 0xe6, 0x83, 0x80, 0x75, 0xa1, 0xf6, 0x46, 0xdc, 0x6a, 0x4d,
0x6c, 0xb2, 0x7d, 0x6d, 0x10, 0x85, 0xa6, 0x61, 0x69, 0xeb, 0xcc, 0x18, 0x1b, 0x87, 0x01, 0xdb,
0x85, 0xaa, 0xdc, 0x10, 0x74, 0xdb, 0xaa, 0xca, 0x8d, 0x79, 0x00, 0xbb, 0xd9, 0x2d, 0xbf, 0xa3,
0x61, 0xc7, 0xa6, 0xd3, 0x9e, 0x31, 0x06, 0x75, 0x9b, 0x4b, 0xae, 0x35, 0xa8, 0x8d, 0x63, 0x3e,
0x97, 0x0b, 0xfd, 0x79, 0x6a, 0xb3, 0x0f, 0xa0, 0xb9, 0x10, 0xce, 0x7c, 0x21, 0xe9, 0x0c, 0xd4,
0x2c, 0xdd, 0x43, 0x5b, 0xfd, 0xc0, 0xbb, 0x11, 0x14, 0xea, 0x6d, 0x4b, 0x75, 0xcc, 0x3d, 0xd8,
0xc9, 0x04, 0x92, 0x79, 0x1e, 0x1b, 0x1f, 0x6f, 0x3c, 0xfb, 0x0c, 0xe0, 0x86, 0x2f, 0x1d, 0x9b,
0x4b, 0x2f, 0x08, 0x7b, 0x95, 0x83, 0xda, 0xa0, 0x73, 0xdc, 0xd5, 0xfb, 0xf5, 0x5d, 0x24, 0xb0,
0x52, 0x3a, 0xe6, 0xbf, 0x2b, 0x70, 0xef, 0x4e, 0x10, 0xa0, 0xb9, 0x0b, 0x1e, 0x2e, 0xa2, 0x25,
0x60, 0x9b, 0xfd, 0x0a, 0xcd, 0xe5, 0xb6, 0x08, 0xf4, 0xf1, 0xde, 0xd1, 0xf3, 0x5e, 0xd0, 0xa0,
0xa5, 0x85, 0xec, 0x13, 0xb8, 0xc7, 0xa7, 0xa1, 0x70, 0xe5, 0x24, 0x65, 0x49, 0xed, 0xa0, 0x36,
0x68, 0x58, 0x5d, 0x25, 0x88, 0x0d, 0x09, 0xd9, 0x08, 0xf6, 0xa7, 0xb7, 0x6f, 0xb9, 0x2b, 0x1d,
0x57, 0xa4, 0xf5, 0xeb, 0x64, 0xf9, 0x9e, 0xfe, 0xc2, 0x8b, 0x1b, 0xc7, 0x16, 0xee, 0x4c, 0x58,
0xf7, 0x63, 0xe5, 0x64, 0x0e, 0xf3, 0x10, 0xf6, 0x72, 0xa1, 0x98, 0xf2, 0x6c, 0x25, 0xed, 0x59,
0xf3, 0xc7, 0x06, 0xb4, 0x2d, 0x11, 0xfa, 0x9e, 0x1b, 0x0a, 0xf6, 0x1c, 0x0c, 0xb1, 0x99, 0x09,
0xc5, 0x2a, 0x95, 0xdc, 0xa9, 0x50, 0x3a, 0x2f, 0x22, 0x39, 0x9e, 0xa8, 0x58, 0x99, 0x1d, 0x6a,
0x46, 0xcc, 0xd3, 0x9c, 0x06, 0xa5, 0x29, 0xf1, 0xd3, 0x88, 0x12, 0x6b, 0x39, 0x4a, 0x50, 0xba,
0x39, 0x4e, 0x3c, 0xd4, 0x9c, 0x58, 0x2f, 0x9c, 0x38, 0x43, 0x8a, 0x27, 0x19, 0x52, 0x6c, 0x14,
0x9a, 0x5f, 0xc2, 0x8a, 0x27, 0x19, 0x56, 0x6c, 0x16, 0x42, 0x4b, 0x68, 0xf1, 0x8b, 0x14, 0x2d,
0xb6, 0x72, 0x6c, 0xa0, 0x80, 0x05, 0xbc, 0x38, 0x8c, 0x79, 0xb1, 0x9d, 0x63, 0x52, 0x0d, 0xc9,
0x13, 0xe3, 0xa7, 0x11, 0x31, 0x1a, 0x85, 0x4e, 0xcb, 0x31, 0xe3, 0x49, 0x86, 0x19, 0xa1, 0x70,
0x39, 0x25, 0xd4, 0xf8, 0xdb, 0x2c, 0x35, 0x2a, 0x7e, 0x7b, 0x94, 0xc3, 0x96, 0x72, 0xe3, 0x6f,
0xd2, 0xdc, 0xb8, 0x9d, 0x63, 0x64, 0x1d, 0x0b, 0x3f, 0x4b, 0x8e, 0x87, 0x78, 0xf4, 0x72, 0x91,
0x86, 0xa7, 0x5f, 0x04, 0x81, 0x17, 0x68, 0xf6, 0x52, 0x1d, 0x73, 0x80, 0x1c, 0x93, 0xc4, 0xd7,
0xcf, 0x10, 0x29, 0xf1, 0x44, 0x2a, 0xba, 0xcc, 0xbf, 0x56, 0x12, 0x2c, 0x71, 0x69, 0x9a, 0x9f,
0x0c, 0xcd, 0x4f, 0x29, 0x7e, 0xad, 0x66, 0xf8, 0x95, 0x3d, 0x81, 0x7b, 0x4b, 0x1e, 0x4a, 0xb5,
0xcc, 0x49, 0x86, 0xb0, 0xf6, 0x50, 0xa0, 0xd6, 0xa7, 0x98, 0xeb, 0x29, 0xdc, 0x4f, 0xe9, 0x72,
0xdf, 0x9f, 0x10, 0x8b, 0xd4, 0x89, 0x45, 0xba, 0xb1, 0xf6, 0xa9, 0xef, 0x5f, 0xf0, 0x70, 0x61,
0x9e, 0x24, 0xeb, 0x4f, 0xb8, 0x9b, 0x41, 0x7d, 0xe6, 0xd9, 0x6a, 0x59, 0x3b, 0x16, 0xb5, 0x91,
0xcf, 0x97, 0xde, 0x5c, 0x5b, 0x86, 0x4d, 0xf3, 0xef, 0x95, 0x04, 0x9b, 0x70, 0x77, 0x11, 0xf6,
0x5c, 0xaf, 0x16, 0xc1, 0xdb, 0xa3, 0xcf, 0xfe, 0xfb, 0xd3, 0x87, 0x5b, 0xff, 0xfb, 0xe9, 0xc3,
0x41, 0xaa, 0x1e, 0x92, 0xc2, 0xb5, 0x45, 0xb0, 0x72, 0x5c, 0x39, 0x9c, 0x7b, 0x4f, 0x7f, 0x70,
0x02, 0x31, 0x44, 0xc4, 0xd1, 0xe8, 0x56, 0x8a, 0x50, 0xfb, 0x47, 0x5b, 0x50, 0x8b, 0x2d, 0x60,
0x1f, 0x41, 0x5d, 0xf2, 0x79, 0x44, 0x55, 0x11, 0x19, 0x7e, 0xfb, 0xdd, 0x6b, 0xee, 0x04, 0x16,
0x89, 0xcc, 0xbf, 0x55, 0x90, 0x9a, 0x32, 0xe7, 0xe2, 0xbd, 0x9a, 0xd8, 0x85, 0xda, 0x9c, 0x87,
0xe4, 0xfe, 0x9a, 0x85, 0x4d, 0x1c, 0xb9, 0x16, 0x82, 0xe8, 0xa2, 0x66, 0x61, 0xd3, 0xfc, 0x57,
0x35, 0x89, 0x97, 0x38, 0x7d, 0xdd, 0xb1, 0x70, 0x1f, 0x1a, 0x8e, 0x6b, 0x8b, 0x0d, 0x99, 0x58,
0xb3, 0x54, 0x87, 0x8d, 0x54, 0x9a, 0xad, 0xbd, 0xa3, 0xd9, 0x94, 0x98, 0xbf, 0x89, 0x12, 0x73,
0xfd, 0x1d, 0x67, 0x51, 0x70, 0x9c, 0xc7, 0x0f, 0x3c, 0xef, 0x9a, 0xd6, 0xf6, 0x4e, 0xf3, 0x10,
0x3c, 0x95, 0x3a, 0x9a, 0x99, 0xa4, 0xac, 0xbd, 0xdb, 0x4a, 0x42, 0xf0, 0xcf, 0x58, 0x18, 0xa4,
0x19, 0xec, 0x7d, 0xee, 0xad, 0x79, 0x3f, 0x89, 0xff, 0x98, 0xdc, 0xcc, 0x7d, 0x60, 0x77, 0x59,
0xcb, 0xfc, 0x4b, 0x05, 0x2b, 0x85, 0x2c, 0x21, 0xb1, 0x27, 0xd0, 0x5a, 0xfb, 0x36, 0x97, 0xa2,
0xbc, 0x4c, 0x88, 0x14, 0xd8, 0x2b, 0x78, 0x38, 0x43, 0xb0, 0x1b, 0xae, 0xc3, 0x89, 0xcf, 0x03,
0xbe, 0x9a, 0x44, 0xd8, 0x6a, 0x26, 0x09, 0x9c, 0x45, 0x5a, 0xaf, 0x51, 0x29, 0xb4, 0x1e, 0xcc,
0x32, 0x03, 0x7f, 0x54, 0x20, 0x3a, 0x17, 0x39, 0x55, 0x36, 0x04, 0x50, 0xac, 0x11, 0x3a, 0x6f,
0x85, 0x4e, 0xc7, 0x91, 0x49, 0x64, 0xf1, 0xa5, 0xf3, 0x56, 0x58, 0xc6, 0x34, 0x6a, 0xb2, 0x5f,
0x43, 0x4b, 0x6e, 0x94, 0x76, 0xb6, 0x1e, 0xb9, 0xda, 0x90, 0x6a, 0x53, 0xd2, 0x3f, 0x7b, 0x06,
0xdb, 0x6a, 0xe2, 0xb9, 0x17, 0x86, 0x8e, 0x9f, 0xbb, 0x6f, 0xd0, 0xd4, 0x2f, 0x49, 0x62, 0x75,
0xa6, 0x49, 0xc7, 0xfc, 0x13, 0x18, 0xf1, 0x67, 0xd9, 0x63, 0x30, 0x56, 0x7c, 0x33, 0x99, 0xde,
0x2a, 0x77, 0x55, 0x06, 0x0d, 0xab, 0xbd, 0xe2, 0x1b, 0xda, 0x21, 0xf6, 0x10, 0x5a, 0x28, 0x94,
0x1b, 0xe5, 0x8d, 0x86, 0xd5, 0x5c, 0xf1, 0xcd, 0xd5, 0x26, 0x16, 0xe0, 0x11, 0xd4, 0x05, 0xde,
0x8a, 0x6f, 0x5e, 0xf2, 0xd0, 0xfc, 0x1a, 0x9a, 0xca, 0xc8, 0x5f, 0x34, 0x31, 0xe2, 0xab, 0x19,
0xfc, 0xef, 0xa0, 0x93, 0xb2, 0x9b, 0x7d, 0x0e, 0x0f, 0xd4, 0x0a, 0x7d, 0x1e, 0x48, 0xf2, 0x48,
0x66, 0x42, 0x46, 0xc2, 0xd7, 0x3c, 0x90, 0xf8, 0x49, 0x9a, 0xda, 0xfc, 0x47, 0x15, 0x9a, 0xaa,
0x6e, 0x63, 0x8f, 0x30, 0xa5, 0x73, 0xc7, 0x9d, 0x38, 0x76, 0x94, 0x4a, 0xa8, 0x3f, 0xb6, 0x53,
0x67, 0xa1, 0x9a, 0x39, 0x0b, 0x0c, 0xea, 0xd2, 0x59, 0x09, 0xbd, 0x2a, 0x6a, 0xa3, 0xb1, 0xee,
0x7a, 0x45, 0x5e, 0xa8, 0x2b, 0x2f, 0xb8, 0xeb, 0x15, 0x7a, 0xe1, 0x18, 0x76, 0x52, 0x39, 0xc1,
0xb1, 0x75, 0xad, 0xb2, 0x9b, 0xde, 0x80, 0xf1, 0xb9, 0xd5, 0x89, 0xb3, 0xc3, 0xd8, 0x66, 0x03,
0xa0, 0x64, 0x31, 0x51, 0xf5, 0x80, 0x4a, 0x22, 0x4d, 0x4a, 0x22, 0xbb, 0x38, 0xae, 0x0b, 0x06,
0x2c, 0x4a, 0x1f, 0x83, 0x81, 0x07, 0x44, 0xa9, 0xb4, 0x48, 0xa5, 0x8d, 0x03, 0x24, 0xfc, 0x18,
0xf6, 0x92, 0x9a, 0x52, 0xa9, 0xb4, 0xd5, 0x2c, 0xc9, 0x30, 0x29, 0x3e, 0x82, 0x76, 0x9c, 0xac,
0x0c, 0xd2, 0x68, 0x71, 0x9d, 0xa3, 0xc6, 0xd0, 0xd2, 0x26, 0x16, 0x16, 0xc5, 0x4f, 0xa0, 0x81,
0x5e, 0x8f, 0x0e, 0x42, 0x54, 0xaa, 0x90, 0xb7, 0x85, 0xd4, 0xa5, 0xb1, 0x52, 0x31, 0x4f, 0x60,
0x27, 0x33, 0x8e, 0xac, 0x2a, 0x3d, 0xc9, 0x97, 0x7a, 0xa3, 0x54, 0x27, 0xfe, 0x4c, 0x35, 0xf9,
0x8c, 0xf9, 0x25, 0x18, 0xf1, 0xb9, 0x44, 0x57, 0xfb, 0xeb, 0xe9, 0x24, 0xba, 0xe1, 0x6c, 0x5b,
0x4d, 0x7f, 0x3d, 0xfd, 0x56, 0x5d, 0x72, 0x7c, 0xef, 0x07, 0x5d, 0xa0, 0xd7, 0x2c, 0xd5, 0x31,
0xbf, 0x82, 0x76, 0x54, 0x40, 0x97, 0x43, 0x4b, 0xb6, 0xda, 0xfc, 0x67, 0x05, 0x9a, 0x2a, 0xa7,
0x15, 0x5c, 0xaa, 0x3e, 0xa7, 0xdb, 0xc6, 0x5a, 0x4c, 0x70, 0xd1, 0x04, 0xdc, 0x8d, 0x0f, 0x96,
0x02, 0x1d, 0x5d, 0xdd, 0xfa, 0xc2, 0x32, 0x48, 0x0b, 0x9b, 0xec, 0x23, 0xd8, 0x56, 0x90, 0x50,
0x06, 0x8e, 0x1b, 0x31, 0x5a, 0x87, 0xc6, 0x2e, 0x69, 0x08, 0xb7, 0x54, 0xa9, 0x38, 0xae, 0xd4,
0xb9, 0xab, 0x4d, 0x03, 0x63, 0x57, 0x9a, 0x8f, 0xa1, 0x4e, 0xf3, 0x00, 0x34, 0x2f, 0xaf, 0xac,
0xf1, 0xab, 0x97, 0xdd, 0x2d, 0xd6, 0x82, 0xda, 0xf8, 0xd5, 0x55, 0xb7, 0x72, 0xfc, 0x63, 0x03,
0xf6, 0x4e, 0x47, 0x67, 0xe3, 0x53, 0xdf, 0x5f, 0x3a, 0x33, 0x4e, 0xe5, 0xc4, 0x10, 0xea, 0x54,
0x30, 0x15, 0xbc, 0x5b, 0xf4, 0x8b, 0x2a, 0x77, 0x76, 0x0c, 0x0d, 0xaa, 0x9b, 0x58, 0xd1, 0xf3,
0x45, 0xbf, 0xb0, 0x80, 0xc7, 0x8f, 0xa8, 0xca, 0xea, 0xee, 0x2b, 0x46, 0xbf, 0xa8, 0x8a, 0x67,
0x5f, 0x83, 0x91, 0x54, 0x3c, 0x65, 0x6f, 0x19, 0xfd, 0xd2, 0x7a, 0x1e, 0xf1, 0x49, 0xd5, 0x53,
0xf6, 0xa2, 0xd1, 0x2f, 0x2d, 0xea, 0xd9, 0x73, 0x68, 0x45, 0x05, 0x49, 0xf1, 0xbb, 0x46, 0xbf,
0xa4, 0xae, 0x47, 0xf7, 0xa8, 0x32, 0xa1, 0xe8, 0xb9, 0xa2, 0x5f, 0x58, 0xaa, 0xb3, 0x67, 0xd0,
0xd4, 0x19, 0xb2, 0xf0, 0x49, 0xa4, 0x5f, 0x7c, 0x21, 0xc0, 0x45, 0x26, 0x37, 0xdb, 0xb2, 0xb7,
0x8e, 0x7e, 0x69, 0xa9, 0xcf, 0x4e, 0x01, 0x52, 0x57, 0xda, 0xd2, 0x17, 0x8f, 0x7e, 0x79, 0xc1,
0xcf, 0xf0, 0xec, 0xc4, 0x97, 0xca, 0xe2, 0x77, 0x8f, 0x7e, 0x59, 0xcd, 0x3f, 0x6d, 0xd2, 0x5b,
0xda, 0x17, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x36, 0x4b, 0x6a, 0x6b, 0x96, 0x13, 0x00, 0x00,
// 1754 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcd, 0x6e, 0x23, 0xc7,
0x11, 0x16, 0xff, 0x39, 0x45, 0xfd, 0x70, 0x5b, 0x5a, 0x2f, 0x97, 0x7b, 0xb0, 0x3c, 0x40, 0x62,
0xca, 0xf6, 0x8a, 0xb6, 0x8c, 0x0d, 0x56, 0x76, 0x60, 0x44, 0x94, 0xd6, 0x2b, 0xc2, 0xc0, 0x66,
0x33, 0x52, 0x7c, 0xc8, 0x85, 0x68, 0x72, 0x5a, 0xe4, 0x60, 0xc9, 0x99, 0xf1, 0x4c, 0x53, 0xa6,
0x16, 0x79, 0x04, 0xdf, 0x73, 0x4e, 0x2e, 0x09, 0xf2, 0x02, 0x39, 0xe6, 0x16, 0xe4, 0x19, 0x72,
0xf0, 0xb3, 0x04, 0x55, 0xdd, 0xf3, 0xab, 0x19, 0xc3, 0xd8, 0x83, 0x2f, 0x52, 0x77, 0x57, 0x7d,
0xc5, 0xea, 0x9a, 0xea, 0xaf, 0xaa, 0x1b, 0x1e, 0xc8, 0x3b, 0x5f, 0x84, 0x43, 0xfa, 0x7b, 0xec,
0x07, 0x9e, 0xf4, 0x58, 0x83, 0x26, 0xfd, 0xa7, 0x73, 0x47, 0x2e, 0xd6, 0xd3, 0xe3, 0x99, 0xb7,
0x1a, 0xce, 0xbd, 0xb9, 0x37, 0x24, 0xe9, 0x74, 0x7d, 0x43, 0x33, 0x9a, 0xd0, 0x48, 0xa1, 0xcc,
0xff, 0xd4, 0xa1, 0x65, 0x89, 0xef, 0xd6, 0x22, 0x94, 0x6c, 0x00, 0x75, 0x31, 0x5b, 0x78, 0xbd,
0xca, 0x61, 0x65, 0xd0, 0x39, 0x61, 0xc7, 0xca, 0xba, 0x96, 0xbe, 0x98, 0x2d, 0xbc, 0xcb, 0x2d,
0x8b, 0x34, 0xd8, 0xc7, 0xd0, 0xb8, 0x59, 0xae, 0xc3, 0x45, 0xaf, 0x4a, 0xaa, 0xfb, 0x59, 0xd5,
0xaf, 0x51, 0x74, 0xb9, 0x65, 0x29, 0x1d, 0x34, 0xeb, 0xb8, 0x37, 0x5e, 0xaf, 0x56, 0x64, 0x76,
0xec, 0xde, 0x90, 0x59, 0xd4, 0x60, 0xcf, 0x01, 0x42, 0x21, 0x27, 0x9e, 0x2f, 0x1d, 0xcf, 0xed,
0xd5, 0x49, 0xff, 0x51, 0x56, 0xff, 0x4a, 0xc8, 0xdf, 0x93, 0xf8, 0x72, 0xcb, 0x32, 0xc2, 0x68,
0x82, 0x48, 0x5b, 0x2c, 0x9d, 0x5b, 0x11, 0x4c, 0xe4, 0xa6, 0xd7, 0x28, 0x42, 0x5e, 0x28, 0xf9,
0xf5, 0x06, 0x91, 0x76, 0x34, 0x61, 0x27, 0xd0, 0x9e, 0x2d, 0xc4, 0xec, 0x0d, 0xe2, 0x9a, 0x84,
0x7b, 0x98, 0xc5, 0x9d, 0xa3, 0x94, 0x50, 0xad, 0x99, 0x1a, 0xb2, 0x63, 0x68, 0xce, 0xbc, 0xd5,
0xca, 0x91, 0xbd, 0x16, 0x21, 0x0e, 0x72, 0x08, 0x92, 0x5d, 0x6e, 0x59, 0x5a, 0x0b, 0xc3, 0xf5,
0xdd, 0x5a, 0x04, 0x77, 0xbd, 0x76, 0x51, 0xb8, 0xfe, 0x80, 0x22, 0x0c, 0x17, 0xe9, 0xe0, 0x56,
0x1c, 0xd7, 0x91, 0x93, 0xd9, 0x82, 0x3b, 0x6e, 0xcf, 0x28, 0xda, 0xca, 0xd8, 0x75, 0xe4, 0x39,
0x8a, 0x71, 0x2b, 0x4e, 0x34, 0x61, 0x5f, 0x42, 0x67, 0x2a, 0xe6, 0x8e, 0x3b, 0x99, 0x2e, 0xbd,
0xd9, 0x9b, 0x1e, 0x10, 0xb4, 0x97, 0x85, 0x8e, 0x50, 0x61, 0x84, 0xf2, 0xcb, 0x2d, 0x0b, 0xa6,
0xf1, 0x8c, 0x3d, 0x03, 0x43, 0xb8, 0xb6, 0x86, 0x76, 0x08, 0xfa, 0x5e, 0x2e, 0x03, 0x5c, 0x3b,
0x02, 0xb6, 0x85, 0x1e, 0x8f, 0x5a, 0xd0, 0xb8, 0xe5, 0xcb, 0xb5, 0x30, 0x3f, 0x84, 0x4e, 0x2a,
0x53, 0x58, 0x0f, 0x5a, 0x2b, 0x11, 0x86, 0x7c, 0x2e, 0x28, 0x9d, 0x0c, 0x2b, 0x9a, 0x9a, 0xbb,
0xb0, 0x9d, 0xce, 0x93, 0x14, 0x10, 0x73, 0x01, 0x81, 0xb7, 0x22, 0x08, 0x31, 0x01, 0x34, 0x50,
0x4f, 0xcd, 0x2f, 0xa0, 0x9b, 0x4f, 0x02, 0xd6, 0x85, 0xda, 0x1b, 0x71, 0xa7, 0x35, 0x71, 0xc8,
0x0e, 0xb4, 0x43, 0x94, 0x9a, 0x86, 0xa5, 0xbd, 0x33, 0x63, 0x6c, 0x9c, 0x06, 0x6c, 0x17, 0xaa,
0x72, 0x43, 0xd0, 0x6d, 0xab, 0x2a, 0x37, 0xe6, 0x21, 0xec, 0x66, 0x3f, 0xf9, 0x3d, 0x0d, 0x3b,
0x76, 0x9d, 0xbe, 0x19, 0x63, 0x50, 0xb7, 0xb9, 0xe4, 0x5a, 0x83, 0xc6, 0xb8, 0xe6, 0x73, 0xb9,
0xd0, 0x3f, 0x4f, 0x63, 0xf6, 0x1e, 0x34, 0x17, 0xc2, 0x99, 0x2f, 0x24, 0x9d, 0x81, 0x9a, 0xa5,
0x67, 0xe8, 0xab, 0x1f, 0x78, 0xb7, 0x82, 0x52, 0xbd, 0x6d, 0xa9, 0x89, 0xb9, 0x07, 0x3b, 0x99,
0x44, 0x32, 0x2f, 0x62, 0xe7, 0xe3, 0x0f, 0xcf, 0x3e, 0x05, 0xb8, 0xe5, 0x4b, 0xc7, 0xe6, 0xd2,
0x0b, 0xc2, 0x5e, 0xe5, 0xb0, 0x36, 0xe8, 0x9c, 0x74, 0xf5, 0xf7, 0xfa, 0x36, 0x12, 0x58, 0x29,
0x1d, 0xf3, 0xdf, 0x15, 0x78, 0x70, 0x2f, 0x09, 0xd0, 0xdd, 0x05, 0x0f, 0x17, 0xd1, 0x16, 0x70,
0xcc, 0x7e, 0x85, 0xee, 0x72, 0x5b, 0x04, 0xfa, 0x78, 0xef, 0x68, 0xbb, 0x97, 0xb4, 0x68, 0x69,
0x21, 0xfb, 0x18, 0x1e, 0xf0, 0x69, 0x28, 0x5c, 0x39, 0x49, 0x79, 0x52, 0x3b, 0xac, 0x0d, 0x1a,
0x56, 0x57, 0x09, 0x62, 0x47, 0x42, 0x36, 0x82, 0x83, 0xe9, 0xdd, 0x5b, 0xee, 0x4a, 0xc7, 0x15,
0x69, 0xfd, 0x3a, 0x79, 0xbe, 0xa7, 0x7f, 0xe1, 0xc5, 0xad, 0x63, 0x0b, 0x77, 0x26, 0xac, 0xfd,
0x58, 0x39, 0xb1, 0x61, 0x1e, 0xc1, 0x5e, 0x2e, 0x15, 0x53, 0x91, 0xad, 0xa4, 0x23, 0x6b, 0xfe,
0xd0, 0x80, 0xb6, 0x25, 0x42, 0xdf, 0x73, 0x43, 0xc1, 0x9e, 0x83, 0x21, 0x36, 0x33, 0xa1, 0x58,
0xa5, 0x92, 0x3b, 0x15, 0x4a, 0xe7, 0x45, 0x24, 0xc7, 0x13, 0x15, 0x2b, 0xb3, 0x23, 0xcd, 0x88,
0x79, 0x9a, 0xd3, 0xa0, 0x34, 0x25, 0x7e, 0x12, 0x51, 0x62, 0x2d, 0x47, 0x09, 0x4a, 0x37, 0xc7,
0x89, 0x47, 0x9a, 0x13, 0xeb, 0x85, 0x86, 0x33, 0xa4, 0x78, 0x9a, 0x21, 0xc5, 0x46, 0xa1, 0xfb,
0x25, 0xac, 0x78, 0x9a, 0x61, 0xc5, 0x66, 0x21, 0xb4, 0x84, 0x16, 0x3f, 0x4f, 0xd1, 0x62, 0x2b,
0xc7, 0x06, 0x0a, 0x58, 0xc0, 0x8b, 0xc3, 0x98, 0x17, 0xdb, 0x39, 0x26, 0xd5, 0x90, 0x3c, 0x31,
0x7e, 0x12, 0x11, 0xa3, 0x51, 0x18, 0xb4, 0x1c, 0x33, 0x9e, 0x66, 0x98, 0x11, 0x0a, 0xb7, 0x53,
0x42, 0x8d, 0xbf, 0xcd, 0x52, 0xa3, 0xe2, 0xb7, 0xc7, 0x39, 0x6c, 0x29, 0x37, 0xfe, 0x26, 0xcd,
0x8d, 0xdb, 0x39, 0x46, 0xd6, 0xb9, 0xf0, 0x93, 0xe4, 0x78, 0x84, 0x47, 0x2f, 0x97, 0x69, 0x78,
0xfa, 0x45, 0x10, 0x78, 0x81, 0x66, 0x2f, 0x35, 0x31, 0x07, 0xc8, 0x31, 0x49, 0x7e, 0xfd, 0x04,
0x91, 0x12, 0x4f, 0xa4, 0xb2, 0xcb, 0xfc, 0x4b, 0x25, 0xc1, 0x12, 0x97, 0xa6, 0xf9, 0xc9, 0xd0,
0xfc, 0x94, 0xe2, 0xd7, 0x6a, 0x86, 0x5f, 0xd9, 0x47, 0xf0, 0x60, 0xc9, 0x43, 0xa9, 0xb6, 0x39,
0xc9, 0x10, 0xd6, 0x1e, 0x0a, 0xd4, 0xfe, 0x14, 0x73, 0x3d, 0x85, 0xfd, 0x94, 0x2e, 0xf7, 0xfd,
0x09, 0xb1, 0x48, 0x9d, 0x58, 0xa4, 0x1b, 0x6b, 0x9f, 0xf9, 0xfe, 0x25, 0x0f, 0x17, 0xe6, 0x69,
0xb2, 0xff, 0x84, 0xbb, 0x19, 0xd4, 0x67, 0x9e, 0xad, 0xb6, 0xb5, 0x63, 0xd1, 0x18, 0xf9, 0x7c,
0xe9, 0xcd, 0xb5, 0x67, 0x38, 0x34, 0xff, 0x56, 0x49, 0xb0, 0x09, 0x77, 0x17, 0x61, 0x2f, 0xf4,
0x6e, 0x11, 0xbc, 0x3d, 0xfa, 0xf4, 0xbf, 0x3f, 0xbe, 0xbf, 0xf5, 0xbf, 0x1f, 0xdf, 0x1f, 0xa4,
0xfa, 0x21, 0x29, 0x5c, 0x5b, 0x04, 0x2b, 0xc7, 0x95, 0xc3, 0xb9, 0xf7, 0xf4, 0x7b, 0x27, 0x10,
0x43, 0x44, 0x1c, 0x8f, 0xee, 0xa4, 0x08, 0x75, 0x7c, 0xb4, 0x07, 0xb5, 0xd8, 0x03, 0xf6, 0x01,
0xd4, 0x25, 0x9f, 0x47, 0x54, 0x15, 0x91, 0xe1, 0x37, 0xdf, 0xbe, 0xe6, 0x4e, 0x60, 0x91, 0xc8,
0xfc, 0x6b, 0x05, 0xa9, 0x29, 0x73, 0x2e, 0x7e, 0x51, 0x17, 0xbb, 0x50, 0x9b, 0xf3, 0x90, 0xc2,
0x5f, 0xb3, 0x70, 0x88, 0x2b, 0x37, 0x42, 0x10, 0x5d, 0xd4, 0x2c, 0x1c, 0x9a, 0xff, 0xaa, 0x26,
0xf9, 0x12, 0x97, 0xaf, 0x7b, 0x1e, 0x1e, 0x40, 0xc3, 0x71, 0x6d, 0xb1, 0x21, 0x17, 0x6b, 0x96,
0x9a, 0xb0, 0x91, 0x2a, 0xb3, 0xb5, 0x77, 0x74, 0x9b, 0x0a, 0xf3, 0xd7, 0x51, 0x61, 0xae, 0xbf,
0xa3, 0x15, 0x05, 0x47, 0x3b, 0x7e, 0xe0, 0x79, 0x37, 0xb4, 0xb7, 0x77, 0xb2, 0x43, 0xf0, 0x54,
0xe9, 0x68, 0x66, 0x8a, 0xb2, 0x8e, 0x6e, 0x2b, 0x49, 0xc1, 0x3f, 0x63, 0x63, 0x90, 0x66, 0xb0,
0x5f, 0xf2, 0xdb, 0x9a, 0xfb, 0x49, 0xfe, 0xc7, 0xe4, 0x66, 0x1e, 0x00, 0xbb, 0xcf, 0x5a, 0xe6,
0x3f, 0x2a, 0xd8, 0x29, 0x64, 0x09, 0x89, 0x5d, 0xc0, 0xc3, 0xb8, 0xde, 0x4e, 0xb0, 0x92, 0xac,
0x7d, 0x9b, 0x4b, 0x51, 0xde, 0x34, 0xec, 0xc7, 0xea, 0x57, 0x42, 0xfe, 0x51, 0x29, 0xb3, 0x57,
0xf0, 0x68, 0x86, 0x66, 0xdd, 0x70, 0x1d, 0x4e, 0x7c, 0x1e, 0xf0, 0x55, 0x6c, 0xa7, 0x9a, 0x29,
0x0f, 0xe7, 0x91, 0xd6, 0x6b, 0x54, 0x0a, 0xad, 0x87, 0xb3, 0xcc, 0x82, 0xb6, 0x47, 0x27, 0x26,
0xa7, 0xca, 0x86, 0x00, 0x8a, 0x4f, 0x42, 0xe7, 0xad, 0xd0, 0x85, 0x3a, 0x72, 0x8f, 0xf6, 0x72,
0xe5, 0xbc, 0x15, 0x96, 0x31, 0x8d, 0x86, 0xec, 0xd7, 0xd0, 0x92, 0x1b, 0xa5, 0x9d, 0xed, 0x54,
0xae, 0x37, 0xa4, 0xda, 0x94, 0xf4, 0x9f, 0x3d, 0x83, 0x6d, 0x65, 0x78, 0xee, 0x85, 0xa1, 0xe3,
0xe7, 0x6e, 0x22, 0x64, 0xfa, 0x25, 0x49, 0xac, 0xce, 0x34, 0x99, 0x98, 0x7f, 0x02, 0x23, 0xfe,
0x59, 0xf6, 0x04, 0x8c, 0x15, 0xdf, 0x4c, 0xa6, 0x77, 0x2a, 0x74, 0x95, 0x41, 0xc3, 0x6a, 0xaf,
0xf8, 0x86, 0xbe, 0x1d, 0x7b, 0x04, 0x2d, 0x14, 0xca, 0x8d, 0x8a, 0x46, 0xc3, 0x6a, 0xae, 0xf8,
0xe6, 0x7a, 0x13, 0x0b, 0xf0, 0x70, 0xea, 0xd6, 0x6f, 0xc5, 0x37, 0x2f, 0x79, 0x68, 0x7e, 0x05,
0x4d, 0xe5, 0xe4, 0xcf, 0x32, 0x8c, 0xf8, 0x6a, 0x06, 0xff, 0x3b, 0xe8, 0xa4, 0xfc, 0x66, 0x9f,
0xc1, 0x43, 0xb5, 0x43, 0x9f, 0x07, 0x92, 0x22, 0x92, 0x31, 0xc8, 0x48, 0xf8, 0x9a, 0x07, 0x12,
0x7f, 0x92, 0x4c, 0x9b, 0x7f, 0xaf, 0x42, 0x53, 0x75, 0x74, 0xec, 0x31, 0x16, 0x7b, 0xee, 0xb8,
0x13, 0xc7, 0x8e, 0x8a, 0x0c, 0xcd, 0xc7, 0x76, 0xea, 0x94, 0x54, 0x33, 0xa7, 0x84, 0x41, 0x5d,
0x3a, 0x2b, 0xa1, 0x77, 0x45, 0x63, 0x74, 0xd6, 0x5d, 0xaf, 0x28, 0x0a, 0x75, 0x15, 0x05, 0x77,
0xbd, 0xc2, 0x28, 0x9c, 0xc0, 0x4e, 0xaa, 0x5a, 0x38, 0xb6, 0xee, 0x62, 0x76, 0xd3, 0x1f, 0x60,
0x7c, 0x61, 0x75, 0xe2, 0xba, 0x31, 0xb6, 0xd9, 0x00, 0xa8, 0x8c, 0x4c, 0x54, 0xa7, 0xa0, 0xca,
0x4b, 0x93, 0xca, 0xcb, 0x2e, 0xae, 0xeb, 0x56, 0x02, 0xdb, 0xd5, 0x27, 0x60, 0xe0, 0xd1, 0x51,
0x2a, 0x2d, 0x52, 0x69, 0xe3, 0x02, 0x09, 0x3f, 0x84, 0xbd, 0xa4, 0xdb, 0x54, 0x2a, 0x6d, 0x65,
0x25, 0x59, 0x26, 0xc5, 0xc7, 0xd0, 0x8e, 0xcb, 0x98, 0x41, 0x1a, 0x2d, 0xae, 0xab, 0xd7, 0x18,
0x5a, 0xda, 0xc5, 0xc2, 0x76, 0xf9, 0x23, 0x68, 0x60, 0xd4, 0xa3, 0x83, 0x10, 0x35, 0x31, 0x14,
0x6d, 0x21, 0x75, 0xd3, 0xac, 0x54, 0xcc, 0x53, 0xd8, 0xc9, 0xac, 0x23, 0xdf, 0x4a, 0x4f, 0xf2,
0xa5, 0xfe, 0x50, 0x6a, 0x12, 0xff, 0x4c, 0x35, 0xf9, 0x19, 0xf3, 0x0b, 0x30, 0xe2, 0x33, 0x8a,
0xa1, 0xf6, 0xd7, 0xd3, 0x49, 0x74, 0xf7, 0xd9, 0xb6, 0x9a, 0xfe, 0x7a, 0xfa, 0x8d, 0xba, 0xfe,
0xf8, 0xde, 0xf7, 0xba, 0x75, 0xaf, 0x59, 0x6a, 0x62, 0x7e, 0x09, 0xed, 0xa8, 0xb5, 0x2e, 0x87,
0x96, 0x7c, 0x6a, 0xf3, 0x9f, 0x15, 0x68, 0xaa, 0x6a, 0x57, 0x70, 0xdd, 0xfa, 0x8c, 0xee, 0x21,
0x6b, 0x31, 0xc1, 0x4d, 0x13, 0x70, 0x37, 0x3e, 0x58, 0x0a, 0x74, 0x7c, 0x7d, 0xe7, 0x0b, 0xcb,
0x20, 0x2d, 0x1c, 0xb2, 0x0f, 0x60, 0x5b, 0x41, 0x42, 0x19, 0x38, 0x6e, 0xc4, 0x75, 0x1d, 0x5a,
0xbb, 0xa2, 0x25, 0xfc, 0xa4, 0x4a, 0xc5, 0x71, 0xa5, 0xae, 0x6a, 0x6d, 0x5a, 0x18, 0xbb, 0xd2,
0x7c, 0x02, 0x75, 0xb2, 0x03, 0xd0, 0xbc, 0xba, 0xb6, 0xc6, 0xaf, 0x5e, 0x76, 0xb7, 0x58, 0x0b,
0x6a, 0xe3, 0x57, 0xd7, 0xdd, 0xca, 0xc9, 0x0f, 0x0d, 0xd8, 0x3b, 0x1b, 0x9d, 0x8f, 0xcf, 0x7c,
0x7f, 0xe9, 0xcc, 0x38, 0x35, 0x1a, 0x43, 0xa8, 0x53, 0x2b, 0x55, 0xf0, 0xa2, 0xd1, 0x2f, 0xea,
0xe9, 0xd9, 0x09, 0x34, 0xa8, 0xa3, 0x62, 0x45, 0x0f, 0x1b, 0xfd, 0xc2, 0xd6, 0x1e, 0x7f, 0x44,
0xf5, 0x5c, 0xf7, 0xdf, 0x37, 0xfa, 0x45, 0xfd, 0x3d, 0xfb, 0x0a, 0x8c, 0xa4, 0x17, 0x2a, 0x7b,
0xe5, 0xe8, 0x97, 0x76, 0xfa, 0x88, 0x4f, 0xfa, 0xa1, 0xb2, 0xb7, 0x8e, 0x7e, 0x69, 0xbb, 0xcf,
0x9e, 0x43, 0x2b, 0x6a, 0x55, 0x8a, 0x5f, 0x3c, 0xfa, 0x25, 0x1d, 0x3f, 0x86, 0x47, 0x35, 0x10,
0x45, 0x0f, 0x19, 0xfd, 0xc2, 0x26, 0x9e, 0x3d, 0x83, 0xa6, 0xae, 0x9d, 0x85, 0x8f, 0x25, 0xfd,
0xe2, 0xab, 0x02, 0x6e, 0x32, 0xb9, 0xf3, 0x96, 0xbd, 0x82, 0xf4, 0x4b, 0x2f, 0x01, 0xec, 0x0c,
0x20, 0x75, 0xd9, 0x2d, 0x7d, 0x0b, 0xe9, 0x97, 0x5f, 0x05, 0x18, 0x9e, 0x9d, 0xf8, 0xba, 0x59,
0xfc, 0x22, 0xd2, 0x2f, 0xbb, 0x0d, 0x4c, 0x9b, 0xf4, 0xca, 0xf6, 0xf9, 0xff, 0x03, 0x00, 0x00,
0xff, 0xff, 0x3a, 0x99, 0xe6, 0x77, 0xb0, 0x13, 0x00, 0x00,
}

View File

@ -157,7 +157,7 @@ message ResponseBeginBlock{
}
message ResponseEndBlock{
repeated Validator updates = 1;
repeated Validator validator_set_updates = 1;
ConsensusParams consensus_param_updates = 2;
}