Browse Source

BeginBlock(hash, header)

pull/1780/head
Ethan Buchman 8 years ago
parent
commit
ddb2b01631
10 changed files with 158 additions and 143 deletions
  1. +2
    -2
      client/client.go
  2. +4
    -4
      client/grpc_client.go
  3. +5
    -5
      client/local_client.go
  4. +4
    -4
      client/socket_client.go
  5. +17
    -12
      example/dummy/persistent_dummy.go
  6. +1
    -1
      server/socket_server.go
  7. +2
    -2
      types/application.go
  8. +2
    -2
      types/messages.go
  9. +119
    -110
      types/types.pb.go
  10. +2
    -1
      types/types.proto

+ 2
- 2
client/client.go View File

@ -33,11 +33,11 @@ type Client interface {
CommitSync() (res types.Result)
InitChainAsync(validators []*types.Validator) *ReqRes
BeginBlockAsync(header *types.Header) *ReqRes
BeginBlockAsync(hash []byte, header *types.Header) *ReqRes
EndBlockAsync(height uint64) *ReqRes
InitChainSync(validators []*types.Validator) (err error)
BeginBlockSync(header *types.Header) (err error)
BeginBlockSync(hash []byte, header *types.Header) (err error)
EndBlockSync(height uint64) (changedValidators []*types.Validator, err error)
}


+ 4
- 4
client/grpc_client.go View File

@ -200,8 +200,8 @@ func (cli *grpcClient) InitChainAsync(validators []*types.Validator) *ReqRes {
return cli.finishAsyncCall(req, &types.Response{&types.Response_InitChain{res}})
}
func (cli *grpcClient) BeginBlockAsync(header *types.Header) *ReqRes {
req := types.ToRequestBeginBlock(header)
func (cli *grpcClient) BeginBlockAsync(hash []byte, header *types.Header) *ReqRes {
req := types.ToRequestBeginBlock(hash, header)
res, err := cli.client.BeginBlock(context.Background(), req.GetBeginBlock(), grpc.FailFast(true))
if err != nil {
cli.StopForError(err)
@ -321,8 +321,8 @@ func (cli *grpcClient) InitChainSync(validators []*types.Validator) (err error)
return cli.Error()
}
func (cli *grpcClient) BeginBlockSync(header *types.Header) (err error) {
cli.BeginBlockAsync(header)
func (cli *grpcClient) BeginBlockSync(hash []byte, header *types.Header) (err error) {
cli.BeginBlockAsync(hash, header)
return cli.Error()
}


+ 5
- 5
client/local_client.go View File

@ -122,14 +122,14 @@ func (app *localClient) InitChainAsync(validators []*types.Validator) *ReqRes {
return reqRes
}
func (app *localClient) BeginBlockAsync(header *types.Header) *ReqRes {
func (app *localClient) BeginBlockAsync(hash []byte, header *types.Header) *ReqRes {
app.mtx.Lock()
if bcApp, ok := app.Application.(types.BlockchainAware); ok {
bcApp.BeginBlock(header)
bcApp.BeginBlock(hash, header)
}
app.mtx.Unlock()
return app.callback(
types.ToRequestBeginBlock(header),
types.ToRequestBeginBlock(hash, header),
types.ToResponseBeginBlock(),
)
}
@ -208,10 +208,10 @@ func (app *localClient) InitChainSync(validators []*types.Validator) (err error)
return nil
}
func (app *localClient) BeginBlockSync(header *types.Header) (err error) {
func (app *localClient) BeginBlockSync(hash []byte, header *types.Header) (err error) {
app.mtx.Lock()
if bcApp, ok := app.Application.(types.BlockchainAware); ok {
bcApp.BeginBlock(header)
bcApp.BeginBlock(hash, header)
}
app.mtx.Unlock()
return nil


+ 4
- 4
client/socket_client.go View File

@ -263,8 +263,8 @@ func (cli *socketClient) InitChainAsync(validators []*types.Validator) *ReqRes {
return cli.queueRequest(types.ToRequestInitChain(validators))
}
func (cli *socketClient) BeginBlockAsync(header *types.Header) *ReqRes {
return cli.queueRequest(types.ToRequestBeginBlock(header))
func (cli *socketClient) BeginBlockAsync(hash []byte, header *types.Header) *ReqRes {
return cli.queueRequest(types.ToRequestBeginBlock(hash, header))
}
func (cli *socketClient) EndBlockAsync(height uint64) *ReqRes {
@ -361,8 +361,8 @@ func (cli *socketClient) InitChainSync(validators []*types.Validator) (err error
return nil
}
func (cli *socketClient) BeginBlockSync(header *types.Header) (err error) {
cli.queueRequest(types.ToRequestBeginBlock(header))
func (cli *socketClient) BeginBlockSync(hash []byte, header *types.Header) (err error) {
cli.queueRequest(types.ToRequestBeginBlock(hash, header))
cli.FlushSync()
if err := cli.Error(); err != nil {
return err


+ 17
- 12
example/dummy/persistent_dummy.go View File

@ -47,6 +47,10 @@ func SaveLastBlock(db dbm.DB, lastBlock types.LastBlockInfo) {
type PersistentDummyApplication struct {
app *DummyApplication
db dbm.DB
// latest received
blockHash []byte
blockHeader *types.Header
}
func NewPersistentDummyApplication(dbDir string) *PersistentDummyApplication {
@ -88,9 +92,16 @@ func (app *PersistentDummyApplication) CheckTx(tx []byte) types.Result {
func (app *PersistentDummyApplication) Commit() types.Result {
// Save
hash := app.app.state.Save()
log.Info("Saved state", "root", hash)
return types.NewResultOK(hash, "")
appHash := app.app.state.Save()
log.Info("Saved state", "root", appHash)
lastBlock := types.LastBlockInfo{
BlockHeight: app.blockHeader.Height,
BlockHash: app.blockHash,
AppHash: appHash, // this hash will be in the next block header
}
SaveLastBlock(app.db, lastBlock)
return types.NewResultOK(appHash, "")
}
func (app *PersistentDummyApplication) Query(query []byte) types.Result {
@ -101,15 +112,9 @@ func (app *PersistentDummyApplication) InitChain(validators []*types.Validator)
return
}
func (app *PersistentDummyApplication) BeginBlock(header *types.Header) {
// we commit the previous block state on BeginBlock because thats
// when we get the prev block hash and the app hash
lastBlock := types.LastBlockInfo{
BlockHeight: header.Height - 1,
BlockHash: header.LastBlockHash,
AppHash: header.AppHash,
}
SaveLastBlock(app.db, lastBlock)
func (app *PersistentDummyApplication) BeginBlock(hash []byte, header *types.Header) {
app.blockHash = hash
app.blockHeader = header
}
func (app *PersistentDummyApplication) EndBlock(height uint64) (diffs []*types.Validator) {


+ 1
- 1
server/socket_server.go View File

@ -192,7 +192,7 @@ func (s *SocketServer) handleRequest(req *types.Request, responses chan<- *types
responses <- types.ToResponseInitChain()
case *types.Request_BeginBlock:
if app, ok := s.app.(types.BlockchainAware); ok {
app.BeginBlock(r.BeginBlock.Header)
app.BeginBlock(r.BeginBlock.Hash, r.BeginBlock.Header)
}
responses <- types.ToResponseBeginBlock()
case *types.Request_EndBlock:


+ 2
- 2
types/application.go View File

@ -34,7 +34,7 @@ type BlockchainAware interface {
InitChain(validators []*Validator)
// Signals the beginning of a block
BeginBlock(header *Header)
BeginBlock(hash []byte, header *Header)
// Signals the end of a block
// diffs: changed validators from app to TendermintCore
@ -96,7 +96,7 @@ func (app *GRPCApplication) InitChain(ctx context.Context, req *RequestInitChain
func (app *GRPCApplication) BeginBlock(ctx context.Context, req *RequestBeginBlock) (*ResponseBeginBlock, error) {
if chainAware, ok := app.app.(BlockchainAware); ok {
chainAware.BeginBlock(req.Header)
chainAware.BeginBlock(req.Hash, req.Header)
}
return &ResponseBeginBlock{}, nil
}


+ 2
- 2
types/messages.go View File

@ -61,9 +61,9 @@ func ToRequestInitChain(validators []*Validator) *Request {
}
}
func ToRequestBeginBlock(header *Header) *Request {
func ToRequestBeginBlock(hash []byte, header *Header) *Request {
return &Request{
Value: &Request_BeginBlock{&RequestBeginBlock{header}},
Value: &Request_BeginBlock{&RequestBeginBlock{hash, header}},
}
}


+ 119
- 110
types/types.pb.go View File

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

+ 2
- 1
types/types.proto View File

@ -124,7 +124,8 @@ message RequestInitChain{
}
message RequestBeginBlock{
Header header = 1;
bytes hash = 1;
Header header = 2;
}
message RequestEndBlock{


Loading…
Cancel
Save