tendermint/types/types.pb.go

2343 lines
76 KiB
Go
Raw Normal View History

2016-01-30 19:36:33 -08:00
// Code generated by protoc-gen-go.
2016-11-15 11:11:01 -08:00
// source: types/types.proto
2016-01-30 19:36:33 -08:00
// DO NOT EDIT!
/*
Package types is a generated protocol buffer package.
It is generated from these files:
2016-11-15 11:11:01 -08:00
types/types.proto
2016-01-30 19:36:33 -08:00
It has these top-level messages:
Request
2016-05-13 23:22:32 -07:00
RequestEcho
RequestFlush
RequestInfo
RequestSetOption
2017-01-12 12:27:08 -08:00
RequestDeliverTx
2016-05-13 23:22:32 -07:00
RequestCheckTx
RequestQuery
2017-01-10 06:59:29 -08:00
RequestProof
2016-05-13 23:22:32 -07:00
RequestCommit
RequestInitChain
RequestBeginBlock
RequestEndBlock
2016-01-30 19:36:33 -08:00
Response
2016-05-13 23:22:32 -07:00
ResponseException
ResponseEcho
ResponseFlush
ResponseInfo
ResponseSetOption
2017-01-12 12:27:08 -08:00
ResponseDeliverTx
2016-05-13 23:22:32 -07:00
ResponseCheckTx
ResponseQuery
2017-01-10 06:59:29 -08:00
ResponseProof
2016-05-13 23:22:32 -07:00
ResponseCommit
ResponseInitChain
ResponseBeginBlock
ResponseEndBlock
Header
2016-11-16 13:11:36 -08:00
BlockID
PartSetHeader
2016-02-28 18:53:24 -08:00
Validator
2016-01-30 19:36:33 -08:00
*/
package types
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
2016-05-17 21:54:32 -07:00
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
2016-01-30 19:36:33 -08:00
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
2016-05-13 23:22:32 -07:00
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
2016-06-16 16:12:44 -07:00
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
2016-05-13 23:22:32 -07:00
2016-05-17 17:06:24 -07:00
// Not being used
// Could be added to request/response
// so we don't have to type switch
// (would be twice as fast, but we're talking about 15ns)
2016-01-31 19:56:02 -08:00
type MessageType int32
const (
MessageType_NullMessage MessageType = 0
MessageType_Echo MessageType = 1
MessageType_Flush MessageType = 2
MessageType_Info MessageType = 3
MessageType_SetOption MessageType = 4
MessageType_Exception MessageType = 5
MessageType_DeliverTx MessageType = 17
MessageType_CheckTx MessageType = 18
MessageType_Commit MessageType = 19
MessageType_Query MessageType = 20
MessageType_InitChain MessageType = 21
2016-03-26 22:35:23 -07:00
MessageType_BeginBlock MessageType = 22
MessageType_EndBlock MessageType = 23
2017-01-10 06:59:29 -08:00
MessageType_Proof MessageType = 24
2016-01-31 19:56:02 -08:00
)
var MessageType_name = map[int32]string{
0: "NullMessage",
1: "Echo",
2: "Flush",
3: "Info",
4: "SetOption",
5: "Exception",
2017-01-12 12:27:08 -08:00
17: "DeliverTx",
2016-01-31 19:56:02 -08:00
18: "CheckTx",
2016-02-14 13:11:06 -08:00
19: "Commit",
2016-01-31 19:56:02 -08:00
20: "Query",
21: "InitChain",
2016-03-26 22:35:23 -07:00
22: "BeginBlock",
23: "EndBlock",
2017-01-10 06:59:29 -08:00
24: "Proof",
2016-01-31 19:56:02 -08:00
}
var MessageType_value = map[string]int32{
"NullMessage": 0,
"Echo": 1,
"Flush": 2,
"Info": 3,
"SetOption": 4,
"Exception": 5,
"DeliverTx": 17,
"CheckTx": 18,
"Commit": 19,
"Query": 20,
"InitChain": 21,
2016-03-26 22:35:23 -07:00
"BeginBlock": 22,
"EndBlock": 23,
2017-01-10 06:59:29 -08:00
"Proof": 24,
2016-01-31 19:56:02 -08:00
}
func (x MessageType) String() string {
return proto.EnumName(MessageType_name, int32(x))
}
func (MessageType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
type CodeType int32
const (
2016-03-06 17:57:47 -08:00
CodeType_OK CodeType = 0
// General response codes, 0 ~ 99
CodeType_InternalError CodeType = 1
CodeType_EncodingError CodeType = 2
CodeType_BadNonce CodeType = 3
CodeType_Unauthorized CodeType = 4
CodeType_InsufficientFunds CodeType = 5
CodeType_UnknownRequest CodeType = 6
// Reserved for basecoin, 100 ~ 199
CodeType_BaseDuplicateAddress CodeType = 101
CodeType_BaseEncodingError CodeType = 102
CodeType_BaseInsufficientFees CodeType = 103
CodeType_BaseInsufficientFunds CodeType = 104
CodeType_BaseInsufficientGasPrice CodeType = 105
CodeType_BaseInvalidInput CodeType = 106
CodeType_BaseInvalidOutput CodeType = 107
CodeType_BaseInvalidPubKey CodeType = 108
CodeType_BaseInvalidSequence CodeType = 109
CodeType_BaseInvalidSignature CodeType = 110
2016-03-24 11:12:16 -07:00
CodeType_BaseUnknownAddress CodeType = 111
CodeType_BaseUnknownPubKey CodeType = 112
2016-03-24 14:17:48 -07:00
CodeType_BaseUnknownPlugin CodeType = 113
// Reserved for governance, 200 ~ 299
CodeType_GovUnknownEntity CodeType = 201
CodeType_GovUnknownGroup CodeType = 202
2016-03-15 11:36:05 -07:00
CodeType_GovUnknownProposal CodeType = 203
CodeType_GovDuplicateGroup CodeType = 204
CodeType_GovDuplicateMember CodeType = 205
CodeType_GovDuplicateProposal CodeType = 206
CodeType_GovDuplicateVote CodeType = 207
CodeType_GovInvalidMember CodeType = 208
CodeType_GovInvalidVote CodeType = 209
CodeType_GovInvalidVotingPower CodeType = 210
)
var CodeType_name = map[int32]string{
0: "OK",
1: "InternalError",
2: "EncodingError",
3: "BadNonce",
4: "Unauthorized",
5: "InsufficientFunds",
6: "UnknownRequest",
101: "BaseDuplicateAddress",
102: "BaseEncodingError",
103: "BaseInsufficientFees",
104: "BaseInsufficientFunds",
105: "BaseInsufficientGasPrice",
106: "BaseInvalidInput",
107: "BaseInvalidOutput",
108: "BaseInvalidPubKey",
109: "BaseInvalidSequence",
110: "BaseInvalidSignature",
2016-03-24 11:12:16 -07:00
111: "BaseUnknownAddress",
112: "BaseUnknownPubKey",
2016-03-24 14:17:48 -07:00
113: "BaseUnknownPlugin",
201: "GovUnknownEntity",
202: "GovUnknownGroup",
2016-03-15 11:36:05 -07:00
203: "GovUnknownProposal",
204: "GovDuplicateGroup",
205: "GovDuplicateMember",
206: "GovDuplicateProposal",
207: "GovDuplicateVote",
208: "GovInvalidMember",
209: "GovInvalidVote",
210: "GovInvalidVotingPower",
}
var CodeType_value = map[string]int32{
"OK": 0,
"InternalError": 1,
"EncodingError": 2,
"BadNonce": 3,
"Unauthorized": 4,
"InsufficientFunds": 5,
"UnknownRequest": 6,
"BaseDuplicateAddress": 101,
"BaseEncodingError": 102,
"BaseInsufficientFees": 103,
"BaseInsufficientFunds": 104,
"BaseInsufficientGasPrice": 105,
"BaseInvalidInput": 106,
"BaseInvalidOutput": 107,
"BaseInvalidPubKey": 108,
"BaseInvalidSequence": 109,
"BaseInvalidSignature": 110,
2016-03-24 11:12:16 -07:00
"BaseUnknownAddress": 111,
"BaseUnknownPubKey": 112,
2016-03-24 14:17:48 -07:00
"BaseUnknownPlugin": 113,
"GovUnknownEntity": 201,
"GovUnknownGroup": 202,
"GovUnknownProposal": 203,
"GovDuplicateGroup": 204,
"GovDuplicateMember": 205,
"GovDuplicateProposal": 206,
"GovDuplicateVote": 207,
"GovInvalidMember": 208,
"GovInvalidVote": 209,
"GovInvalidVotingPower": 210,
}
func (x CodeType) String() string {
return proto.EnumName(CodeType_name, int32(x))
}
func (CodeType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
2016-01-30 19:36:33 -08:00
type Request struct {
2016-05-17 17:06:24 -07:00
// Types that are valid to be assigned to Value:
2016-05-13 23:22:32 -07:00
// *Request_Echo
// *Request_Flush
// *Request_Info
// *Request_SetOption
2017-01-12 12:27:08 -08:00
// *Request_DeliverTx
2016-05-13 23:22:32 -07:00
// *Request_CheckTx
// *Request_Commit
// *Request_Query
// *Request_InitChain
// *Request_BeginBlock
// *Request_EndBlock
2017-01-10 06:59:29 -08:00
// *Request_Proof
2016-05-17 17:06:24 -07:00
Value isRequest_Value `protobuf_oneof:"value"`
2016-01-30 19:36:33 -08:00
}
func (m *Request) Reset() { *m = Request{} }
func (m *Request) String() string { return proto.CompactTextString(m) }
func (*Request) ProtoMessage() {}
func (*Request) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
2016-05-17 17:06:24 -07:00
type isRequest_Value interface {
isRequest_Value()
2016-05-13 23:22:32 -07:00
}
type Request_Echo struct {
Echo *RequestEcho `protobuf:"bytes,1,opt,name=echo,oneof"`
}
type Request_Flush struct {
Flush *RequestFlush `protobuf:"bytes,2,opt,name=flush,oneof"`
}
type Request_Info struct {
Info *RequestInfo `protobuf:"bytes,3,opt,name=info,oneof"`
}
type Request_SetOption struct {
SetOption *RequestSetOption `protobuf:"bytes,4,opt,name=set_option,json=setOption,oneof"`
}
2017-01-12 12:27:08 -08:00
type Request_DeliverTx struct {
DeliverTx *RequestDeliverTx `protobuf:"bytes,5,opt,name=deliver_tx,json=deliverTx,oneof"`
2016-05-13 23:22:32 -07:00
}
type Request_CheckTx struct {
CheckTx *RequestCheckTx `protobuf:"bytes,6,opt,name=check_tx,json=checkTx,oneof"`
}
type Request_Commit struct {
Commit *RequestCommit `protobuf:"bytes,7,opt,name=commit,oneof"`
}
type Request_Query struct {
Query *RequestQuery `protobuf:"bytes,8,opt,name=query,oneof"`
}
type Request_InitChain struct {
InitChain *RequestInitChain `protobuf:"bytes,9,opt,name=init_chain,json=initChain,oneof"`
}
type Request_BeginBlock struct {
BeginBlock *RequestBeginBlock `protobuf:"bytes,10,opt,name=begin_block,json=beginBlock,oneof"`
}
type Request_EndBlock struct {
EndBlock *RequestEndBlock `protobuf:"bytes,11,opt,name=end_block,json=endBlock,oneof"`
}
2017-01-10 06:59:29 -08:00
type Request_Proof struct {
Proof *RequestProof `protobuf:"bytes,12,opt,name=proof,oneof"`
}
2016-05-13 23:22:32 -07:00
2016-05-17 17:06:24 -07:00
func (*Request_Echo) isRequest_Value() {}
func (*Request_Flush) isRequest_Value() {}
func (*Request_Info) isRequest_Value() {}
func (*Request_SetOption) isRequest_Value() {}
func (*Request_DeliverTx) isRequest_Value() {}
2016-05-17 17:06:24 -07:00
func (*Request_CheckTx) isRequest_Value() {}
func (*Request_Commit) isRequest_Value() {}
func (*Request_Query) isRequest_Value() {}
func (*Request_InitChain) isRequest_Value() {}
func (*Request_BeginBlock) isRequest_Value() {}
func (*Request_EndBlock) isRequest_Value() {}
2017-01-10 06:59:29 -08:00
func (*Request_Proof) isRequest_Value() {}
2016-05-13 23:22:32 -07:00
2016-05-17 17:06:24 -07:00
func (m *Request) GetValue() isRequest_Value {
2016-05-13 23:22:32 -07:00
if m != nil {
2016-05-17 17:06:24 -07:00
return m.Value
2016-05-13 23:22:32 -07:00
}
return nil
}
func (m *Request) GetEcho() *RequestEcho {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_Echo); ok {
2016-05-13 23:22:32 -07:00
return x.Echo
}
return nil
}
func (m *Request) GetFlush() *RequestFlush {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_Flush); ok {
2016-05-13 23:22:32 -07:00
return x.Flush
}
return nil
}
func (m *Request) GetInfo() *RequestInfo {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_Info); ok {
2016-05-13 23:22:32 -07:00
return x.Info
}
return nil
}
func (m *Request) GetSetOption() *RequestSetOption {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_SetOption); ok {
2016-05-13 23:22:32 -07:00
return x.SetOption
}
return nil
}
2017-01-12 12:27:08 -08:00
func (m *Request) GetDeliverTx() *RequestDeliverTx {
if x, ok := m.GetValue().(*Request_DeliverTx); ok {
return x.DeliverTx
2016-05-13 23:22:32 -07:00
}
return nil
}
func (m *Request) GetCheckTx() *RequestCheckTx {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_CheckTx); ok {
2016-05-13 23:22:32 -07:00
return x.CheckTx
}
return nil
}
func (m *Request) GetCommit() *RequestCommit {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_Commit); ok {
2016-05-13 23:22:32 -07:00
return x.Commit
}
return nil
}
func (m *Request) GetQuery() *RequestQuery {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_Query); ok {
2016-05-13 23:22:32 -07:00
return x.Query
}
return nil
}
func (m *Request) GetInitChain() *RequestInitChain {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_InitChain); ok {
2016-05-13 23:22:32 -07:00
return x.InitChain
}
return nil
}
func (m *Request) GetBeginBlock() *RequestBeginBlock {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_BeginBlock); ok {
2016-05-13 23:22:32 -07:00
return x.BeginBlock
}
return nil
}
func (m *Request) GetEndBlock() *RequestEndBlock {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Request_EndBlock); ok {
2016-05-13 23:22:32 -07:00
return x.EndBlock
}
return nil
}
2017-01-10 06:59:29 -08:00
func (m *Request) GetProof() *RequestProof {
if x, ok := m.GetValue().(*Request_Proof); ok {
return x.Proof
}
return nil
}
2016-05-13 23:22:32 -07:00
// XXX_OneofFuncs is for the internal use of the proto package.
func (*Request) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _Request_OneofMarshaler, _Request_OneofUnmarshaler, _Request_OneofSizer, []interface{}{
(*Request_Echo)(nil),
(*Request_Flush)(nil),
(*Request_Info)(nil),
(*Request_SetOption)(nil),
2017-01-12 12:27:08 -08:00
(*Request_DeliverTx)(nil),
2016-05-13 23:22:32 -07:00
(*Request_CheckTx)(nil),
(*Request_Commit)(nil),
(*Request_Query)(nil),
(*Request_InitChain)(nil),
(*Request_BeginBlock)(nil),
(*Request_EndBlock)(nil),
2017-01-10 06:59:29 -08:00
(*Request_Proof)(nil),
2016-05-13 23:22:32 -07:00
}
}
func _Request_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*Request)
2016-05-17 17:06:24 -07:00
// value
switch x := m.Value.(type) {
2016-05-13 23:22:32 -07:00
case *Request_Echo:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Echo); err != nil {
return err
}
case *Request_Flush:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Flush); err != nil {
return err
}
case *Request_Info:
b.EncodeVarint(3<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Info); err != nil {
return err
}
case *Request_SetOption:
b.EncodeVarint(4<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.SetOption); err != nil {
return err
}
2017-01-12 12:27:08 -08:00
case *Request_DeliverTx:
2016-05-13 23:22:32 -07:00
b.EncodeVarint(5<<3 | proto.WireBytes)
2017-01-12 12:27:08 -08:00
if err := b.EncodeMessage(x.DeliverTx); err != nil {
2016-05-13 23:22:32 -07:00
return err
}
case *Request_CheckTx:
b.EncodeVarint(6<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.CheckTx); err != nil {
return err
}
case *Request_Commit:
b.EncodeVarint(7<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Commit); err != nil {
return err
}
case *Request_Query:
b.EncodeVarint(8<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Query); err != nil {
return err
}
case *Request_InitChain:
b.EncodeVarint(9<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.InitChain); err != nil {
return err
}
case *Request_BeginBlock:
b.EncodeVarint(10<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.BeginBlock); err != nil {
return err
}
case *Request_EndBlock:
b.EncodeVarint(11<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.EndBlock); err != nil {
return err
}
2017-01-10 06:59:29 -08:00
case *Request_Proof:
b.EncodeVarint(12<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Proof); err != nil {
return err
}
2016-05-13 23:22:32 -07:00
case nil:
default:
2016-05-17 17:06:24 -07:00
return fmt.Errorf("Request.Value has unexpected type %T", x)
2016-05-13 23:22:32 -07:00
}
return nil
}
func _Request_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*Request)
switch tag {
2016-05-17 17:06:24 -07:00
case 1: // value.echo
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestEcho)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_Echo{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 2: // value.flush
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestFlush)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_Flush{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 3: // value.info
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestInfo)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_Info{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 4: // value.set_option
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestSetOption)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_SetOption{msg}
2016-05-13 23:22:32 -07:00
return true, err
2017-01-12 12:27:08 -08:00
case 5: // value.deliver_tx
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
2017-01-12 12:27:08 -08:00
msg := new(RequestDeliverTx)
2016-05-13 23:22:32 -07:00
err := b.DecodeMessage(msg)
2017-01-12 12:27:08 -08:00
m.Value = &Request_DeliverTx{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 6: // value.check_tx
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestCheckTx)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_CheckTx{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 7: // value.commit
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestCommit)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_Commit{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 8: // value.query
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestQuery)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_Query{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 9: // value.init_chain
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestInitChain)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_InitChain{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 10: // value.begin_block
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestBeginBlock)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_BeginBlock{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 11: // value.end_block
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestEndBlock)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Request_EndBlock{msg}
2016-05-13 23:22:32 -07:00
return true, err
2017-01-10 06:59:29 -08:00
case 12: // value.proof
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(RequestProof)
err := b.DecodeMessage(msg)
m.Value = &Request_Proof{msg}
return true, err
2016-05-13 23:22:32 -07:00
default:
return false, nil
}
}
func _Request_OneofSizer(msg proto.Message) (n int) {
m := msg.(*Request)
2016-05-17 17:06:24 -07:00
// value
switch x := m.Value.(type) {
2016-05-13 23:22:32 -07:00
case *Request_Echo:
s := proto.Size(x.Echo)
n += proto.SizeVarint(1<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_Flush:
s := proto.Size(x.Flush)
n += proto.SizeVarint(2<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_Info:
s := proto.Size(x.Info)
n += proto.SizeVarint(3<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_SetOption:
s := proto.Size(x.SetOption)
n += proto.SizeVarint(4<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
2017-01-12 12:27:08 -08:00
case *Request_DeliverTx:
s := proto.Size(x.DeliverTx)
2016-05-13 23:22:32 -07:00
n += proto.SizeVarint(5<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_CheckTx:
s := proto.Size(x.CheckTx)
n += proto.SizeVarint(6<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_Commit:
s := proto.Size(x.Commit)
n += proto.SizeVarint(7<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_Query:
s := proto.Size(x.Query)
n += proto.SizeVarint(8<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_InitChain:
s := proto.Size(x.InitChain)
n += proto.SizeVarint(9<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_BeginBlock:
s := proto.Size(x.BeginBlock)
n += proto.SizeVarint(10<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Request_EndBlock:
s := proto.Size(x.EndBlock)
n += proto.SizeVarint(11<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
2017-01-10 06:59:29 -08:00
case *Request_Proof:
s := proto.Size(x.Proof)
n += proto.SizeVarint(12<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
2016-05-13 23:22:32 -07:00
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
type RequestEcho struct {
Message string `protobuf:"bytes,1,opt,name=message" json:"message,omitempty"`
}
func (m *RequestEcho) Reset() { *m = RequestEcho{} }
func (m *RequestEcho) String() string { return proto.CompactTextString(m) }
func (*RequestEcho) ProtoMessage() {}
func (*RequestEcho) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
2016-11-15 11:11:01 -08:00
func (m *RequestEcho) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
2016-05-13 23:22:32 -07:00
type RequestFlush struct {
}
func (m *RequestFlush) Reset() { *m = RequestFlush{} }
func (m *RequestFlush) String() string { return proto.CompactTextString(m) }
func (*RequestFlush) ProtoMessage() {}
func (*RequestFlush) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
type RequestInfo struct {
}
func (m *RequestInfo) Reset() { *m = RequestInfo{} }
func (m *RequestInfo) String() string { return proto.CompactTextString(m) }
func (*RequestInfo) ProtoMessage() {}
func (*RequestInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
type RequestSetOption struct {
Key string `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
}
func (m *RequestSetOption) Reset() { *m = RequestSetOption{} }
func (m *RequestSetOption) String() string { return proto.CompactTextString(m) }
func (*RequestSetOption) ProtoMessage() {}
func (*RequestSetOption) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
2016-11-15 11:11:01 -08:00
func (m *RequestSetOption) GetKey() string {
if m != nil {
return m.Key
}
return ""
}
func (m *RequestSetOption) GetValue() string {
if m != nil {
return m.Value
}
return ""
}
2017-01-12 12:27:08 -08:00
type RequestDeliverTx struct {
2016-05-13 23:22:32 -07:00
Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"`
}
2017-01-12 12:27:08 -08:00
func (m *RequestDeliverTx) Reset() { *m = RequestDeliverTx{} }
func (m *RequestDeliverTx) String() string { return proto.CompactTextString(m) }
func (*RequestDeliverTx) ProtoMessage() {}
func (*RequestDeliverTx) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
2016-05-13 23:22:32 -07:00
2017-01-12 12:27:08 -08:00
func (m *RequestDeliverTx) GetTx() []byte {
2016-11-15 11:11:01 -08:00
if m != nil {
return m.Tx
}
return nil
}
2016-05-13 23:22:32 -07:00
type RequestCheckTx struct {
Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,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 fileDescriptor0, []int{6} }
2016-11-15 11:11:01 -08:00
func (m *RequestCheckTx) GetTx() []byte {
if m != nil {
return m.Tx
}
return nil
}
2016-05-13 23:22:32 -07:00
type RequestQuery struct {
Query []byte `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"`
}
func (m *RequestQuery) Reset() { *m = RequestQuery{} }
func (m *RequestQuery) String() string { return proto.CompactTextString(m) }
func (*RequestQuery) ProtoMessage() {}
func (*RequestQuery) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
2016-11-15 11:11:01 -08:00
func (m *RequestQuery) GetQuery() []byte {
if m != nil {
return m.Query
}
return nil
}
2017-01-10 06:59:29 -08:00
type RequestProof struct {
Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
2017-01-17 08:22:34 -08:00
Height uint64 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
2017-01-10 06:59:29 -08:00
}
func (m *RequestProof) Reset() { *m = RequestProof{} }
func (m *RequestProof) String() string { return proto.CompactTextString(m) }
func (*RequestProof) ProtoMessage() {}
func (*RequestProof) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
func (m *RequestProof) GetKey() []byte {
if m != nil {
return m.Key
}
return nil
}
2017-01-17 08:22:34 -08:00
func (m *RequestProof) GetHeight() uint64 {
2017-01-10 06:59:29 -08:00
if m != nil {
return m.Height
}
return 0
}
2016-05-13 23:22:32 -07:00
type RequestCommit struct {
}
func (m *RequestCommit) Reset() { *m = RequestCommit{} }
func (m *RequestCommit) String() string { return proto.CompactTextString(m) }
func (*RequestCommit) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*RequestCommit) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
2016-05-13 23:22:32 -07:00
type RequestInitChain struct {
Validators []*Validator `protobuf:"bytes,1,rep,name=validators" json:"validators,omitempty"`
}
func (m *RequestInitChain) Reset() { *m = RequestInitChain{} }
func (m *RequestInitChain) String() string { return proto.CompactTextString(m) }
func (*RequestInitChain) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*RequestInitChain) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
2016-05-13 23:22:32 -07:00
func (m *RequestInitChain) GetValidators() []*Validator {
2016-02-28 18:53:24 -08:00
if m != nil {
return m.Validators
}
return nil
}
2016-05-13 23:22:32 -07:00
type RequestBeginBlock struct {
2016-09-09 20:01:53 -07:00
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
Header *Header `protobuf:"bytes,2,opt,name=header" json:"header,omitempty"`
2016-05-13 23:22:32 -07:00
}
func (m *RequestBeginBlock) Reset() { *m = RequestBeginBlock{} }
func (m *RequestBeginBlock) String() string { return proto.CompactTextString(m) }
func (*RequestBeginBlock) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*RequestBeginBlock) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
2016-05-13 23:22:32 -07:00
2016-09-09 20:01:53 -07:00
func (m *RequestBeginBlock) GetHash() []byte {
if m != nil {
return m.Hash
}
return nil
}
func (m *RequestBeginBlock) GetHeader() *Header {
2016-11-15 11:11:01 -08:00
if m != nil {
return m.Header
2016-11-15 11:11:01 -08:00
}
return nil
2016-11-15 11:11:01 -08:00
}
2016-05-13 23:22:32 -07:00
type RequestEndBlock struct {
Height uint64 `protobuf:"varint,1,opt,name=height" json:"height,omitempty"`
}
func (m *RequestEndBlock) Reset() { *m = RequestEndBlock{} }
func (m *RequestEndBlock) String() string { return proto.CompactTextString(m) }
func (*RequestEndBlock) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*RequestEndBlock) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
2016-05-13 23:22:32 -07:00
2016-11-15 11:11:01 -08:00
func (m *RequestEndBlock) GetHeight() uint64 {
if m != nil {
return m.Height
}
return 0
}
2016-01-30 19:36:33 -08:00
type Response struct {
2016-05-17 17:06:24 -07:00
// Types that are valid to be assigned to Value:
2016-05-13 23:22:32 -07:00
// *Response_Exception
// *Response_Echo
// *Response_Flush
// *Response_Info
// *Response_SetOption
2017-01-12 12:27:08 -08:00
// *Response_DeliverTx
2016-05-13 23:22:32 -07:00
// *Response_CheckTx
// *Response_Commit
// *Response_Query
// *Response_InitChain
// *Response_BeginBlock
// *Response_EndBlock
2017-01-10 06:59:29 -08:00
// *Response_Proof
2016-05-17 17:06:24 -07:00
Value isResponse_Value `protobuf_oneof:"value"`
2016-01-30 19:36:33 -08:00
}
func (m *Response) Reset() { *m = Response{} }
func (m *Response) String() string { return proto.CompactTextString(m) }
func (*Response) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*Response) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
2016-05-13 23:22:32 -07:00
2016-05-17 17:06:24 -07:00
type isResponse_Value interface {
isResponse_Value()
2016-05-13 23:22:32 -07:00
}
type Response_Exception struct {
Exception *ResponseException `protobuf:"bytes,1,opt,name=exception,oneof"`
}
type Response_Echo struct {
Echo *ResponseEcho `protobuf:"bytes,2,opt,name=echo,oneof"`
}
type Response_Flush struct {
Flush *ResponseFlush `protobuf:"bytes,3,opt,name=flush,oneof"`
}
type Response_Info struct {
Info *ResponseInfo `protobuf:"bytes,4,opt,name=info,oneof"`
}
type Response_SetOption struct {
SetOption *ResponseSetOption `protobuf:"bytes,5,opt,name=set_option,json=setOption,oneof"`
}
2017-01-12 12:27:08 -08:00
type Response_DeliverTx struct {
DeliverTx *ResponseDeliverTx `protobuf:"bytes,6,opt,name=deliver_tx,json=deliverTx,oneof"`
2016-05-13 23:22:32 -07:00
}
type Response_CheckTx struct {
CheckTx *ResponseCheckTx `protobuf:"bytes,7,opt,name=check_tx,json=checkTx,oneof"`
}
type Response_Commit struct {
Commit *ResponseCommit `protobuf:"bytes,8,opt,name=commit,oneof"`
}
type Response_Query struct {
Query *ResponseQuery `protobuf:"bytes,9,opt,name=query,oneof"`
}
type Response_InitChain struct {
InitChain *ResponseInitChain `protobuf:"bytes,10,opt,name=init_chain,json=initChain,oneof"`
}
type Response_BeginBlock struct {
BeginBlock *ResponseBeginBlock `protobuf:"bytes,11,opt,name=begin_block,json=beginBlock,oneof"`
}
type Response_EndBlock struct {
EndBlock *ResponseEndBlock `protobuf:"bytes,12,opt,name=end_block,json=endBlock,oneof"`
}
2017-01-10 06:59:29 -08:00
type Response_Proof struct {
Proof *ResponseProof `protobuf:"bytes,13,opt,name=proof,oneof"`
}
2016-05-13 23:22:32 -07:00
2016-05-17 17:06:24 -07:00
func (*Response_Exception) isResponse_Value() {}
func (*Response_Echo) isResponse_Value() {}
func (*Response_Flush) isResponse_Value() {}
func (*Response_Info) isResponse_Value() {}
func (*Response_SetOption) isResponse_Value() {}
func (*Response_DeliverTx) isResponse_Value() {}
2016-05-17 17:06:24 -07:00
func (*Response_CheckTx) isResponse_Value() {}
func (*Response_Commit) isResponse_Value() {}
func (*Response_Query) isResponse_Value() {}
func (*Response_InitChain) isResponse_Value() {}
func (*Response_BeginBlock) isResponse_Value() {}
func (*Response_EndBlock) isResponse_Value() {}
2017-01-10 06:59:29 -08:00
func (*Response_Proof) isResponse_Value() {}
2016-05-17 17:06:24 -07:00
func (m *Response) GetValue() isResponse_Value {
2016-02-28 18:53:24 -08:00
if m != nil {
2016-05-17 17:06:24 -07:00
return m.Value
2016-05-13 23:22:32 -07:00
}
return nil
}
func (m *Response) GetException() *ResponseException {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_Exception); ok {
2016-05-13 23:22:32 -07:00
return x.Exception
}
return nil
}
func (m *Response) GetEcho() *ResponseEcho {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_Echo); ok {
2016-05-13 23:22:32 -07:00
return x.Echo
}
return nil
}
func (m *Response) GetFlush() *ResponseFlush {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_Flush); ok {
2016-05-13 23:22:32 -07:00
return x.Flush
}
return nil
}
func (m *Response) GetInfo() *ResponseInfo {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_Info); ok {
2016-05-13 23:22:32 -07:00
return x.Info
}
return nil
}
func (m *Response) GetSetOption() *ResponseSetOption {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_SetOption); ok {
2016-05-13 23:22:32 -07:00
return x.SetOption
}
return nil
}
2017-01-12 12:27:08 -08:00
func (m *Response) GetDeliverTx() *ResponseDeliverTx {
if x, ok := m.GetValue().(*Response_DeliverTx); ok {
return x.DeliverTx
2016-05-13 23:22:32 -07:00
}
return nil
}
func (m *Response) GetCheckTx() *ResponseCheckTx {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_CheckTx); ok {
2016-05-13 23:22:32 -07:00
return x.CheckTx
}
return nil
}
func (m *Response) GetCommit() *ResponseCommit {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_Commit); ok {
2016-05-13 23:22:32 -07:00
return x.Commit
}
return nil
}
func (m *Response) GetQuery() *ResponseQuery {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_Query); ok {
2016-05-13 23:22:32 -07:00
return x.Query
}
return nil
}
func (m *Response) GetInitChain() *ResponseInitChain {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_InitChain); ok {
2016-05-13 23:22:32 -07:00
return x.InitChain
}
return nil
}
func (m *Response) GetBeginBlock() *ResponseBeginBlock {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_BeginBlock); ok {
2016-05-13 23:22:32 -07:00
return x.BeginBlock
}
return nil
}
func (m *Response) GetEndBlock() *ResponseEndBlock {
2016-05-17 17:06:24 -07:00
if x, ok := m.GetValue().(*Response_EndBlock); ok {
2016-05-13 23:22:32 -07:00
return x.EndBlock
}
return nil
}
2017-01-10 06:59:29 -08:00
func (m *Response) GetProof() *ResponseProof {
if x, ok := m.GetValue().(*Response_Proof); ok {
return x.Proof
}
return nil
}
2016-05-13 23:22:32 -07:00
// XXX_OneofFuncs is for the internal use of the proto package.
func (*Response) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
return _Response_OneofMarshaler, _Response_OneofUnmarshaler, _Response_OneofSizer, []interface{}{
(*Response_Exception)(nil),
(*Response_Echo)(nil),
(*Response_Flush)(nil),
(*Response_Info)(nil),
(*Response_SetOption)(nil),
2017-01-12 12:27:08 -08:00
(*Response_DeliverTx)(nil),
2016-05-13 23:22:32 -07:00
(*Response_CheckTx)(nil),
(*Response_Commit)(nil),
(*Response_Query)(nil),
(*Response_InitChain)(nil),
(*Response_BeginBlock)(nil),
(*Response_EndBlock)(nil),
2017-01-10 06:59:29 -08:00
(*Response_Proof)(nil),
2016-05-13 23:22:32 -07:00
}
}
func _Response_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
m := msg.(*Response)
2016-05-17 17:06:24 -07:00
// value
switch x := m.Value.(type) {
2016-05-13 23:22:32 -07:00
case *Response_Exception:
b.EncodeVarint(1<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Exception); err != nil {
return err
}
case *Response_Echo:
b.EncodeVarint(2<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Echo); err != nil {
return err
}
case *Response_Flush:
b.EncodeVarint(3<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Flush); err != nil {
return err
}
case *Response_Info:
b.EncodeVarint(4<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Info); err != nil {
return err
}
case *Response_SetOption:
b.EncodeVarint(5<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.SetOption); err != nil {
return err
}
2017-01-12 12:27:08 -08:00
case *Response_DeliverTx:
2016-05-13 23:22:32 -07:00
b.EncodeVarint(6<<3 | proto.WireBytes)
2017-01-12 12:27:08 -08:00
if err := b.EncodeMessage(x.DeliverTx); err != nil {
2016-05-13 23:22:32 -07:00
return err
}
case *Response_CheckTx:
b.EncodeVarint(7<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.CheckTx); err != nil {
return err
}
case *Response_Commit:
b.EncodeVarint(8<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Commit); err != nil {
return err
}
case *Response_Query:
b.EncodeVarint(9<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Query); err != nil {
return err
}
case *Response_InitChain:
b.EncodeVarint(10<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.InitChain); err != nil {
return err
}
case *Response_BeginBlock:
b.EncodeVarint(11<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.BeginBlock); err != nil {
return err
}
case *Response_EndBlock:
b.EncodeVarint(12<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.EndBlock); err != nil {
return err
}
2017-01-10 06:59:29 -08:00
case *Response_Proof:
b.EncodeVarint(13<<3 | proto.WireBytes)
if err := b.EncodeMessage(x.Proof); err != nil {
return err
}
2016-05-13 23:22:32 -07:00
case nil:
default:
2016-05-17 17:06:24 -07:00
return fmt.Errorf("Response.Value has unexpected type %T", x)
2016-05-13 23:22:32 -07:00
}
return nil
}
func _Response_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
m := msg.(*Response)
switch tag {
2016-05-17 17:06:24 -07:00
case 1: // value.exception
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseException)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_Exception{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 2: // value.echo
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseEcho)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_Echo{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 3: // value.flush
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseFlush)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_Flush{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 4: // value.info
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseInfo)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_Info{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 5: // value.set_option
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseSetOption)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_SetOption{msg}
2016-05-13 23:22:32 -07:00
return true, err
2017-01-12 12:27:08 -08:00
case 6: // value.deliver_tx
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
2017-01-12 12:27:08 -08:00
msg := new(ResponseDeliverTx)
2016-05-13 23:22:32 -07:00
err := b.DecodeMessage(msg)
2017-01-12 12:27:08 -08:00
m.Value = &Response_DeliverTx{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 7: // value.check_tx
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseCheckTx)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_CheckTx{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 8: // value.commit
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseCommit)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_Commit{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 9: // value.query
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseQuery)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_Query{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 10: // value.init_chain
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseInitChain)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_InitChain{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 11: // value.begin_block
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseBeginBlock)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_BeginBlock{msg}
2016-05-13 23:22:32 -07:00
return true, err
2016-05-17 17:06:24 -07:00
case 12: // value.end_block
2016-05-13 23:22:32 -07:00
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseEndBlock)
err := b.DecodeMessage(msg)
2016-05-17 17:06:24 -07:00
m.Value = &Response_EndBlock{msg}
2016-05-13 23:22:32 -07:00
return true, err
2017-01-10 06:59:29 -08:00
case 13: // value.proof
if wire != proto.WireBytes {
return true, proto.ErrInternalBadWireType
}
msg := new(ResponseProof)
err := b.DecodeMessage(msg)
m.Value = &Response_Proof{msg}
return true, err
2016-05-13 23:22:32 -07:00
default:
return false, nil
}
}
func _Response_OneofSizer(msg proto.Message) (n int) {
m := msg.(*Response)
2016-05-17 17:06:24 -07:00
// value
switch x := m.Value.(type) {
2016-05-13 23:22:32 -07:00
case *Response_Exception:
s := proto.Size(x.Exception)
n += proto.SizeVarint(1<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_Echo:
s := proto.Size(x.Echo)
n += proto.SizeVarint(2<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_Flush:
s := proto.Size(x.Flush)
n += proto.SizeVarint(3<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_Info:
s := proto.Size(x.Info)
n += proto.SizeVarint(4<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_SetOption:
s := proto.Size(x.SetOption)
n += proto.SizeVarint(5<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
2017-01-12 12:27:08 -08:00
case *Response_DeliverTx:
s := proto.Size(x.DeliverTx)
2016-05-13 23:22:32 -07:00
n += proto.SizeVarint(6<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_CheckTx:
s := proto.Size(x.CheckTx)
n += proto.SizeVarint(7<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_Commit:
s := proto.Size(x.Commit)
n += proto.SizeVarint(8<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_Query:
s := proto.Size(x.Query)
n += proto.SizeVarint(9<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_InitChain:
s := proto.Size(x.InitChain)
n += proto.SizeVarint(10<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_BeginBlock:
s := proto.Size(x.BeginBlock)
n += proto.SizeVarint(11<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
case *Response_EndBlock:
s := proto.Size(x.EndBlock)
n += proto.SizeVarint(12<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
2017-01-10 06:59:29 -08:00
case *Response_Proof:
s := proto.Size(x.Proof)
n += proto.SizeVarint(13<<3 | proto.WireBytes)
n += proto.SizeVarint(uint64(s))
n += s
2016-05-13 23:22:32 -07:00
case nil:
default:
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
}
return n
}
type ResponseException struct {
Error string `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"`
}
func (m *ResponseException) Reset() { *m = ResponseException{} }
func (m *ResponseException) String() string { return proto.CompactTextString(m) }
func (*ResponseException) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseException) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
2016-05-13 23:22:32 -07:00
2016-11-15 11:11:01 -08:00
func (m *ResponseException) GetError() string {
if m != nil {
return m.Error
}
return ""
}
2016-05-13 23:22:32 -07:00
type ResponseEcho struct {
Message string `protobuf:"bytes,1,opt,name=message" json:"message,omitempty"`
}
func (m *ResponseEcho) Reset() { *m = ResponseEcho{} }
func (m *ResponseEcho) String() string { return proto.CompactTextString(m) }
func (*ResponseEcho) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseEcho) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
2016-05-13 23:22:32 -07:00
2016-11-15 11:11:01 -08:00
func (m *ResponseEcho) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
2016-05-13 23:22:32 -07:00
type ResponseFlush struct {
}
func (m *ResponseFlush) Reset() { *m = ResponseFlush{} }
func (m *ResponseFlush) String() string { return proto.CompactTextString(m) }
func (*ResponseFlush) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseFlush) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
2016-05-13 23:22:32 -07:00
type ResponseInfo struct {
2016-12-26 17:44:36 -08:00
Data string `protobuf:"bytes,1,opt,name=data" json:"data,omitempty"`
Version string `protobuf:"bytes,2,opt,name=version" json:"version,omitempty"`
LastBlockHeight uint64 `protobuf:"varint,3,opt,name=last_block_height,json=lastBlockHeight" json:"last_block_height,omitempty"`
LastBlockAppHash []byte `protobuf:"bytes,4,opt,name=last_block_app_hash,json=lastBlockAppHash,proto3" json:"last_block_app_hash,omitempty"`
2016-05-13 23:22:32 -07:00
}
func (m *ResponseInfo) Reset() { *m = ResponseInfo{} }
func (m *ResponseInfo) String() string { return proto.CompactTextString(m) }
func (*ResponseInfo) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
2016-05-13 23:22:32 -07:00
2016-12-26 17:44:36 -08:00
func (m *ResponseInfo) GetData() string {
2016-11-15 11:11:01 -08:00
if m != nil {
2016-12-26 17:44:36 -08:00
return m.Data
2016-11-15 11:11:01 -08:00
}
return ""
}
2016-12-26 17:44:36 -08:00
func (m *ResponseInfo) GetVersion() string {
if m != nil {
2016-12-26 17:44:36 -08:00
return m.Version
}
2016-12-26 17:44:36 -08:00
return ""
}
2016-12-26 17:44:36 -08:00
func (m *ResponseInfo) GetLastBlockHeight() uint64 {
if m != nil {
2016-12-26 17:44:36 -08:00
return m.LastBlockHeight
}
2016-12-26 17:44:36 -08:00
return 0
}
2016-12-26 17:44:36 -08:00
func (m *ResponseInfo) GetLastBlockAppHash() []byte {
if m != nil {
2016-12-26 17:44:36 -08:00
return m.LastBlockAppHash
}
return nil
}
2016-05-13 23:22:32 -07:00
type ResponseSetOption struct {
Log string `protobuf:"bytes,1,opt,name=log" json:"log,omitempty"`
}
func (m *ResponseSetOption) Reset() { *m = ResponseSetOption{} }
func (m *ResponseSetOption) String() string { return proto.CompactTextString(m) }
func (*ResponseSetOption) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseSetOption) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
2016-05-13 23:22:32 -07:00
2016-11-15 11:11:01 -08:00
func (m *ResponseSetOption) GetLog() string {
if m != nil {
return m.Log
}
return ""
}
2017-01-12 12:27:08 -08:00
type ResponseDeliverTx struct {
2016-05-13 23:22:32 -07:00
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
Log string `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
}
2017-01-12 12:27:08 -08:00
func (m *ResponseDeliverTx) Reset() { *m = ResponseDeliverTx{} }
func (m *ResponseDeliverTx) String() string { return proto.CompactTextString(m) }
func (*ResponseDeliverTx) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseDeliverTx) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
2016-05-13 23:22:32 -07:00
2017-01-12 12:27:08 -08:00
func (m *ResponseDeliverTx) GetCode() CodeType {
2016-11-15 11:11:01 -08:00
if m != nil {
return m.Code
}
return CodeType_OK
}
2017-01-12 12:27:08 -08:00
func (m *ResponseDeliverTx) GetData() []byte {
2016-11-15 11:11:01 -08:00
if m != nil {
return m.Data
}
return nil
}
2017-01-12 12:27:08 -08:00
func (m *ResponseDeliverTx) GetLog() string {
2016-11-15 11:11:01 -08:00
if m != nil {
return m.Log
}
return ""
}
2016-05-13 23:22:32 -07:00
type ResponseCheckTx struct {
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
Log string `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
}
func (m *ResponseCheckTx) Reset() { *m = ResponseCheckTx{} }
func (m *ResponseCheckTx) String() string { return proto.CompactTextString(m) }
func (*ResponseCheckTx) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseCheckTx) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
2016-05-13 23:22:32 -07:00
2016-11-15 11:11:01 -08:00
func (m *ResponseCheckTx) GetCode() CodeType {
if m != nil {
return m.Code
}
return CodeType_OK
}
func (m *ResponseCheckTx) GetData() []byte {
if m != nil {
return m.Data
}
return nil
}
func (m *ResponseCheckTx) GetLog() string {
if m != nil {
return m.Log
}
return ""
}
2016-05-13 23:22:32 -07:00
type ResponseQuery struct {
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
Log string `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
}
func (m *ResponseQuery) Reset() { *m = ResponseQuery{} }
func (m *ResponseQuery) String() string { return proto.CompactTextString(m) }
func (*ResponseQuery) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseQuery) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
2016-05-13 23:22:32 -07:00
2016-11-15 11:11:01 -08:00
func (m *ResponseQuery) GetCode() CodeType {
if m != nil {
return m.Code
}
return CodeType_OK
}
func (m *ResponseQuery) GetData() []byte {
if m != nil {
return m.Data
}
return nil
}
func (m *ResponseQuery) GetLog() string {
if m != nil {
return m.Log
}
return ""
}
2017-01-10 06:59:29 -08:00
type ResponseProof struct {
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
Log string `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
}
func (m *ResponseProof) Reset() { *m = ResponseProof{} }
func (m *ResponseProof) String() string { return proto.CompactTextString(m) }
func (*ResponseProof) ProtoMessage() {}
func (*ResponseProof) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
func (m *ResponseProof) GetCode() CodeType {
if m != nil {
return m.Code
}
return CodeType_OK
}
func (m *ResponseProof) GetData() []byte {
if m != nil {
return m.Data
}
return nil
}
func (m *ResponseProof) GetLog() string {
if m != nil {
return m.Log
}
return ""
}
2016-05-13 23:22:32 -07:00
type ResponseCommit struct {
Code CodeType `protobuf:"varint,1,opt,name=code,enum=types.CodeType" json:"code,omitempty"`
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
Log string `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
}
func (m *ResponseCommit) Reset() { *m = ResponseCommit{} }
func (m *ResponseCommit) String() string { return proto.CompactTextString(m) }
func (*ResponseCommit) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseCommit) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
2016-05-13 23:22:32 -07:00
2016-11-15 11:11:01 -08:00
func (m *ResponseCommit) GetCode() CodeType {
if m != nil {
return m.Code
}
return CodeType_OK
}
func (m *ResponseCommit) GetData() []byte {
if m != nil {
return m.Data
}
return nil
}
func (m *ResponseCommit) GetLog() string {
if m != nil {
return m.Log
}
return ""
}
2016-05-13 23:22:32 -07:00
type ResponseInitChain struct {
}
func (m *ResponseInitChain) Reset() { *m = ResponseInitChain{} }
func (m *ResponseInitChain) String() string { return proto.CompactTextString(m) }
func (*ResponseInitChain) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseInitChain) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
2016-05-13 23:22:32 -07:00
type ResponseBeginBlock struct {
}
func (m *ResponseBeginBlock) Reset() { *m = ResponseBeginBlock{} }
func (m *ResponseBeginBlock) String() string { return proto.CompactTextString(m) }
func (*ResponseBeginBlock) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
2016-05-13 23:22:32 -07:00
type ResponseEndBlock struct {
Diffs []*Validator `protobuf:"bytes,4,rep,name=diffs" json:"diffs,omitempty"`
}
func (m *ResponseEndBlock) Reset() { *m = ResponseEndBlock{} }
func (m *ResponseEndBlock) String() string { return proto.CompactTextString(m) }
func (*ResponseEndBlock) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*ResponseEndBlock) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} }
2016-05-13 23:22:32 -07:00
func (m *ResponseEndBlock) GetDiffs() []*Validator {
if m != nil {
return m.Diffs
2016-02-28 18:53:24 -08:00
}
return nil
}
type Header struct {
2016-11-16 13:11:36 -08:00
ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId" json:"chain_id,omitempty"`
2016-11-22 10:59:27 -08:00
Height uint64 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
2016-11-16 13:11:36 -08:00
Time uint64 `protobuf:"varint,3,opt,name=time" json:"time,omitempty"`
NumTxs uint64 `protobuf:"varint,4,opt,name=num_txs,json=numTxs" json:"num_txs,omitempty"`
LastBlockId *BlockID `protobuf:"bytes,5,opt,name=last_block_id,json=lastBlockId" json:"last_block_id,omitempty"`
LastCommitHash []byte `protobuf:"bytes,6,opt,name=last_commit_hash,json=lastCommitHash,proto3" json:"last_commit_hash,omitempty"`
DataHash []byte `protobuf:"bytes,7,opt,name=data_hash,json=dataHash,proto3" json:"data_hash,omitempty"`
ValidatorsHash []byte `protobuf:"bytes,8,opt,name=validators_hash,json=validatorsHash,proto3" json:"validators_hash,omitempty"`
AppHash []byte `protobuf:"bytes,9,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"`
}
func (m *Header) Reset() { *m = Header{} }
func (m *Header) String() string { return proto.CompactTextString(m) }
func (*Header) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*Header) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
func (m *Header) GetChainId() string {
if m != nil {
return m.ChainId
}
return ""
}
2016-11-22 10:59:27 -08:00
func (m *Header) GetHeight() uint64 {
if m != nil {
return m.Height
}
return 0
}
func (m *Header) GetTime() uint64 {
if m != nil {
return m.Time
}
return 0
}
func (m *Header) GetNumTxs() uint64 {
if m != nil {
return m.NumTxs
}
return 0
}
2016-11-16 13:11:36 -08:00
func (m *Header) GetLastBlockId() *BlockID {
if m != nil {
2016-11-16 13:11:36 -08:00
return m.LastBlockId
}
return nil
}
func (m *Header) GetLastCommitHash() []byte {
if m != nil {
return m.LastCommitHash
}
return nil
}
func (m *Header) GetDataHash() []byte {
if m != nil {
return m.DataHash
}
return nil
}
func (m *Header) GetValidatorsHash() []byte {
if m != nil {
return m.ValidatorsHash
}
return nil
}
func (m *Header) GetAppHash() []byte {
if m != nil {
return m.AppHash
}
return nil
}
2016-11-16 13:11:36 -08:00
type BlockID struct {
Hash []byte `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
Parts *PartSetHeader `protobuf:"bytes,2,opt,name=parts" json:"parts,omitempty"`
}
func (m *BlockID) Reset() { *m = BlockID{} }
func (m *BlockID) String() string { return proto.CompactTextString(m) }
func (*BlockID) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*BlockID) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
2016-11-16 13:11:36 -08:00
func (m *BlockID) GetHash() []byte {
if m != nil {
return m.Hash
}
return nil
}
func (m *BlockID) GetParts() *PartSetHeader {
if m != nil {
return m.Parts
}
return nil
}
type PartSetHeader struct {
Total uint64 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"`
Hash []byte `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
}
func (m *PartSetHeader) Reset() { *m = PartSetHeader{} }
func (m *PartSetHeader) String() string { return proto.CompactTextString(m) }
func (*PartSetHeader) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*PartSetHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} }
func (m *PartSetHeader) GetTotal() uint64 {
if m != nil {
return m.Total
}
return 0
}
func (m *PartSetHeader) GetHash() []byte {
if m != nil {
return m.Hash
}
return nil
}
2016-02-28 18:53:24 -08:00
type Validator struct {
PubKey []byte `protobuf:"bytes,1,opt,name=pubKey,proto3" json:"pubKey,omitempty"`
Power uint64 `protobuf:"varint,2,opt,name=power" json:"power,omitempty"`
}
func (m *Validator) Reset() { *m = Validator{} }
func (m *Validator) String() string { return proto.CompactTextString(m) }
func (*Validator) ProtoMessage() {}
2017-01-10 06:59:29 -08:00
func (*Validator) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} }
2016-02-28 18:53:24 -08:00
2016-11-15 11:11:01 -08:00
func (m *Validator) GetPubKey() []byte {
if m != nil {
return m.PubKey
}
return nil
}
func (m *Validator) GetPower() uint64 {
if m != nil {
return m.Power
}
return 0
}
2016-01-30 19:36:33 -08:00
func init() {
proto.RegisterType((*Request)(nil), "types.Request")
2016-05-13 23:22:32 -07:00
proto.RegisterType((*RequestEcho)(nil), "types.RequestEcho")
proto.RegisterType((*RequestFlush)(nil), "types.RequestFlush")
proto.RegisterType((*RequestInfo)(nil), "types.RequestInfo")
proto.RegisterType((*RequestSetOption)(nil), "types.RequestSetOption")
2017-01-12 12:27:08 -08:00
proto.RegisterType((*RequestDeliverTx)(nil), "types.RequestDeliverTx")
2016-05-13 23:22:32 -07:00
proto.RegisterType((*RequestCheckTx)(nil), "types.RequestCheckTx")
proto.RegisterType((*RequestQuery)(nil), "types.RequestQuery")
2017-01-10 06:59:29 -08:00
proto.RegisterType((*RequestProof)(nil), "types.RequestProof")
2016-05-13 23:22:32 -07:00
proto.RegisterType((*RequestCommit)(nil), "types.RequestCommit")
proto.RegisterType((*RequestInitChain)(nil), "types.RequestInitChain")
proto.RegisterType((*RequestBeginBlock)(nil), "types.RequestBeginBlock")
proto.RegisterType((*RequestEndBlock)(nil), "types.RequestEndBlock")
2016-01-30 19:36:33 -08:00
proto.RegisterType((*Response)(nil), "types.Response")
2016-05-13 23:22:32 -07:00
proto.RegisterType((*ResponseException)(nil), "types.ResponseException")
proto.RegisterType((*ResponseEcho)(nil), "types.ResponseEcho")
proto.RegisterType((*ResponseFlush)(nil), "types.ResponseFlush")
proto.RegisterType((*ResponseInfo)(nil), "types.ResponseInfo")
proto.RegisterType((*ResponseSetOption)(nil), "types.ResponseSetOption")
2017-01-12 12:27:08 -08:00
proto.RegisterType((*ResponseDeliverTx)(nil), "types.ResponseDeliverTx")
2016-05-13 23:22:32 -07:00
proto.RegisterType((*ResponseCheckTx)(nil), "types.ResponseCheckTx")
proto.RegisterType((*ResponseQuery)(nil), "types.ResponseQuery")
2017-01-10 06:59:29 -08:00
proto.RegisterType((*ResponseProof)(nil), "types.ResponseProof")
2016-05-13 23:22:32 -07:00
proto.RegisterType((*ResponseCommit)(nil), "types.ResponseCommit")
proto.RegisterType((*ResponseInitChain)(nil), "types.ResponseInitChain")
proto.RegisterType((*ResponseBeginBlock)(nil), "types.ResponseBeginBlock")
proto.RegisterType((*ResponseEndBlock)(nil), "types.ResponseEndBlock")
proto.RegisterType((*Header)(nil), "types.Header")
2016-11-16 13:11:36 -08:00
proto.RegisterType((*BlockID)(nil), "types.BlockID")
proto.RegisterType((*PartSetHeader)(nil), "types.PartSetHeader")
2016-02-28 18:53:24 -08:00
proto.RegisterType((*Validator)(nil), "types.Validator")
2016-01-31 19:56:02 -08:00
proto.RegisterEnum("types.MessageType", MessageType_name, MessageType_value)
proto.RegisterEnum("types.CodeType", CodeType_name, CodeType_value)
2016-01-30 19:36:33 -08:00
}
2016-05-17 21:54:32 -07:00
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
2016-11-15 11:11:01 -08:00
const _ = grpc.SupportPackageIsVersion4
2016-05-17 21:54:32 -07:00
2017-01-12 12:47:55 -08:00
// Client API for ABCIApplication service
2016-05-17 21:54:32 -07:00
2017-01-12 12:47:55 -08:00
type ABCIApplicationClient interface {
2016-05-17 21:54:32 -07:00
Echo(ctx context.Context, in *RequestEcho, opts ...grpc.CallOption) (*ResponseEcho, error)
Flush(ctx context.Context, in *RequestFlush, opts ...grpc.CallOption) (*ResponseFlush, error)
Info(ctx context.Context, in *RequestInfo, opts ...grpc.CallOption) (*ResponseInfo, error)
SetOption(ctx context.Context, in *RequestSetOption, opts ...grpc.CallOption) (*ResponseSetOption, error)
2017-01-12 12:27:08 -08:00
DeliverTx(ctx context.Context, in *RequestDeliverTx, opts ...grpc.CallOption) (*ResponseDeliverTx, error)
2016-05-17 21:54:32 -07:00
CheckTx(ctx context.Context, in *RequestCheckTx, opts ...grpc.CallOption) (*ResponseCheckTx, error)
Query(ctx context.Context, in *RequestQuery, opts ...grpc.CallOption) (*ResponseQuery, error)
2017-01-10 06:59:29 -08:00
Proof(ctx context.Context, in *RequestProof, opts ...grpc.CallOption) (*ResponseProof, error)
2016-05-17 21:54:32 -07:00
Commit(ctx context.Context, in *RequestCommit, opts ...grpc.CallOption) (*ResponseCommit, error)
InitChain(ctx context.Context, in *RequestInitChain, opts ...grpc.CallOption) (*ResponseInitChain, error)
BeginBlock(ctx context.Context, in *RequestBeginBlock, opts ...grpc.CallOption) (*ResponseBeginBlock, error)
EndBlock(ctx context.Context, in *RequestEndBlock, opts ...grpc.CallOption) (*ResponseEndBlock, error)
}
type aBCIApplicationClient struct {
2016-05-17 21:54:32 -07:00
cc *grpc.ClientConn
}
2017-01-12 12:47:55 -08:00
func NewABCIApplicationClient(cc *grpc.ClientConn) ABCIApplicationClient {
return &aBCIApplicationClient{cc}
2016-05-17 21:54:32 -07:00
}
func (c *aBCIApplicationClient) Echo(ctx context.Context, in *RequestEcho, opts ...grpc.CallOption) (*ResponseEcho, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseEcho)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/Echo", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) Flush(ctx context.Context, in *RequestFlush, opts ...grpc.CallOption) (*ResponseFlush, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseFlush)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/Flush", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) Info(ctx context.Context, in *RequestInfo, opts ...grpc.CallOption) (*ResponseInfo, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseInfo)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/Info", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) SetOption(ctx context.Context, in *RequestSetOption, opts ...grpc.CallOption) (*ResponseSetOption, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseSetOption)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/SetOption", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) DeliverTx(ctx context.Context, in *RequestDeliverTx, opts ...grpc.CallOption) (*ResponseDeliverTx, error) {
2017-01-12 12:27:08 -08:00
out := new(ResponseDeliverTx)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/DeliverTx", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) CheckTx(ctx context.Context, in *RequestCheckTx, opts ...grpc.CallOption) (*ResponseCheckTx, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseCheckTx)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/CheckTx", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) Query(ctx context.Context, in *RequestQuery, opts ...grpc.CallOption) (*ResponseQuery, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseQuery)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/Query", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
2017-01-10 06:59:29 -08:00
func (c *aBCIApplicationClient) Proof(ctx context.Context, in *RequestProof, opts ...grpc.CallOption) (*ResponseProof, error) {
out := new(ResponseProof)
err := grpc.Invoke(ctx, "/types.ABCIApplication/Proof", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) Commit(ctx context.Context, in *RequestCommit, opts ...grpc.CallOption) (*ResponseCommit, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseCommit)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/Commit", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) InitChain(ctx context.Context, in *RequestInitChain, opts ...grpc.CallOption) (*ResponseInitChain, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseInitChain)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/InitChain", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) BeginBlock(ctx context.Context, in *RequestBeginBlock, opts ...grpc.CallOption) (*ResponseBeginBlock, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseBeginBlock)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/BeginBlock", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
func (c *aBCIApplicationClient) EndBlock(ctx context.Context, in *RequestEndBlock, opts ...grpc.CallOption) (*ResponseEndBlock, error) {
2016-05-17 21:54:32 -07:00
out := new(ResponseEndBlock)
2017-01-12 12:47:55 -08:00
err := grpc.Invoke(ctx, "/types.ABCIApplication/EndBlock", in, out, c.cc, opts...)
2016-05-17 21:54:32 -07:00
if err != nil {
return nil, err
}
return out, nil
}
2017-01-12 12:47:55 -08:00
// Server API for ABCIApplication service
2016-05-17 21:54:32 -07:00
2017-01-12 12:47:55 -08:00
type ABCIApplicationServer interface {
2016-05-17 21:54:32 -07:00
Echo(context.Context, *RequestEcho) (*ResponseEcho, error)
Flush(context.Context, *RequestFlush) (*ResponseFlush, error)
Info(context.Context, *RequestInfo) (*ResponseInfo, error)
SetOption(context.Context, *RequestSetOption) (*ResponseSetOption, error)
2017-01-12 12:27:08 -08:00
DeliverTx(context.Context, *RequestDeliverTx) (*ResponseDeliverTx, error)
2016-05-17 21:54:32 -07:00
CheckTx(context.Context, *RequestCheckTx) (*ResponseCheckTx, error)
Query(context.Context, *RequestQuery) (*ResponseQuery, error)
2017-01-10 06:59:29 -08:00
Proof(context.Context, *RequestProof) (*ResponseProof, error)
2016-05-17 21:54:32 -07:00
Commit(context.Context, *RequestCommit) (*ResponseCommit, error)
InitChain(context.Context, *RequestInitChain) (*ResponseInitChain, error)
BeginBlock(context.Context, *RequestBeginBlock) (*ResponseBeginBlock, error)
EndBlock(context.Context, *RequestEndBlock) (*ResponseEndBlock, error)
}
2017-01-12 12:47:55 -08:00
func RegisterABCIApplicationServer(s *grpc.Server, srv ABCIApplicationServer) {
s.RegisterService(&_ABCIApplication_serviceDesc, srv)
2016-05-17 21:54:32 -07:00
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_Echo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestEcho)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Echo(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/Echo",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Echo(ctx, req.(*RequestEcho))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_Flush_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestFlush)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Flush(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/Flush",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Flush(ctx, req.(*RequestFlush))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_Info_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestInfo)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Info(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/Info",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Info(ctx, req.(*RequestInfo))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_SetOption_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestSetOption)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).SetOption(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/SetOption",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).SetOption(ctx, req.(*RequestSetOption))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_DeliverTx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2017-01-12 12:27:08 -08:00
in := new(RequestDeliverTx)
2016-05-17 21:54:32 -07:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).DeliverTx(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/DeliverTx",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).DeliverTx(ctx, req.(*RequestDeliverTx))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_CheckTx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestCheckTx)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).CheckTx(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/CheckTx",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).CheckTx(ctx, req.(*RequestCheckTx))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestQuery)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Query(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/Query",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Query(ctx, req.(*RequestQuery))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-10 06:59:29 -08:00
func _ABCIApplication_Proof_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RequestProof)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ABCIApplicationServer).Proof(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/types.ABCIApplication/Proof",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ABCIApplicationServer).Proof(ctx, req.(*RequestProof))
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_Commit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestCommit)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Commit(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/Commit",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).Commit(ctx, req.(*RequestCommit))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_InitChain_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestInitChain)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).InitChain(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/InitChain",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).InitChain(ctx, req.(*RequestInitChain))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_BeginBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestBeginBlock)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).BeginBlock(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/BeginBlock",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).BeginBlock(ctx, req.(*RequestBeginBlock))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
func _ABCIApplication_EndBlock_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
2016-05-17 21:54:32 -07:00
in := new(RequestEndBlock)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).EndBlock(ctx, in)
2016-05-17 21:54:32 -07:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2017-01-12 12:47:55 -08:00
FullMethod: "/types.ABCIApplication/EndBlock",
2016-05-17 21:54:32 -07:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2017-01-12 12:47:55 -08:00
return srv.(ABCIApplicationServer).EndBlock(ctx, req.(*RequestEndBlock))
2016-05-17 21:54:32 -07:00
}
return interceptor(ctx, in, info, handler)
}
2017-01-12 12:47:55 -08:00
var _ABCIApplication_serviceDesc = grpc.ServiceDesc{
ServiceName: "types.ABCIApplication",
HandlerType: (*ABCIApplicationServer)(nil),
2016-05-17 21:54:32 -07:00
Methods: []grpc.MethodDesc{
{
MethodName: "Echo",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_Echo_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "Flush",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_Flush_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "Info",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_Info_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "SetOption",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_SetOption_Handler,
2016-05-17 21:54:32 -07:00
},
{
2017-01-12 12:27:08 -08:00
MethodName: "DeliverTx",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_DeliverTx_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "CheckTx",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_CheckTx_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "Query",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_Query_Handler,
2016-05-17 21:54:32 -07:00
},
2017-01-10 06:59:29 -08:00
{
MethodName: "Proof",
Handler: _ABCIApplication_Proof_Handler,
},
2016-05-17 21:54:32 -07:00
{
MethodName: "Commit",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_Commit_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "InitChain",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_InitChain_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "BeginBlock",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_BeginBlock_Handler,
2016-05-17 21:54:32 -07:00
},
{
MethodName: "EndBlock",
2017-01-12 12:47:55 -08:00
Handler: _ABCIApplication_EndBlock_Handler,
2016-05-17 21:54:32 -07:00
},
},
2016-06-16 16:12:44 -07:00
Streams: []grpc.StreamDesc{},
2016-11-15 11:11:01 -08:00
Metadata: "types/types.proto",
2016-05-17 21:54:32 -07:00
}
2016-11-15 11:11:01 -08:00
func init() { proto.RegisterFile("types/types.proto", fileDescriptor0) }
2016-06-16 16:12:44 -07:00
2016-01-30 19:36:33 -08:00
var fileDescriptor0 = []byte{
2017-01-17 08:22:34 -08:00
// 1710 bytes of a gzipped FileDescriptorProto
2017-01-10 06:59:29 -08:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x58, 0x5b, 0x6f, 0xe4, 0x48,
2017-01-17 08:22:34 -08:00
0x15, 0x8e, 0x3b, 0x7d, 0x3d, 0x9d, 0x74, 0x2a, 0x27, 0x37, 0xa7, 0xe1, 0x61, 0x64, 0x58, 0x36,
0x33, 0x0c, 0x33, 0x28, 0xab, 0x45, 0x13, 0x16, 0x21, 0x25, 0x33, 0xd9, 0xa4, 0xb5, 0xda, 0x99,
0xe0, 0x9d, 0xdd, 0x07, 0x40, 0xb4, 0x9c, 0x76, 0x75, 0xb7, 0x89, 0xdb, 0xf6, 0xf8, 0x92, 0x4d,
0xf8, 0x23, 0xfc, 0x04, 0x7e, 0x01, 0x2f, 0x3c, 0xf1, 0x84, 0xc4, 0xfd, 0xf2, 0x57, 0xf8, 0x03,
0xe8, 0x54, 0x95, 0xaf, 0xb1, 0x79, 0x9a, 0x7d, 0x69, 0xb9, 0xce, 0xad, 0xea, 0x54, 0x7d, 0xe7,
0xab, 0xd3, 0x05, 0xdb, 0xf1, 0x7d, 0xc0, 0xa3, 0xe7, 0xe2, 0xf7, 0x59, 0x10, 0xfa, 0xb1, 0x8f,
0x1d, 0x31, 0x30, 0xfe, 0xdb, 0x86, 0x9e, 0xc9, 0xdf, 0x25, 0x3c, 0x8a, 0xf1, 0x08, 0xda, 0x7c,
0xb6, 0xf4, 0x75, 0xed, 0x91, 0x76, 0x34, 0x3c, 0xc6, 0x67, 0xd2, 0x5c, 0x69, 0xcf, 0x67, 0x4b,
0xff, 0x72, 0xcd, 0x14, 0x16, 0xf8, 0x7d, 0xe8, 0xcc, 0xdd, 0x24, 0x5a, 0xea, 0x2d, 0x61, 0xba,
0x53, 0x36, 0xfd, 0x94, 0x54, 0x97, 0x6b, 0xa6, 0xb4, 0xa1, 0xb0, 0x8e, 0x37, 0xf7, 0xf5, 0xf5,
0xba, 0xb0, 0x13, 0x6f, 0x2e, 0xc2, 0x92, 0x05, 0xbe, 0x00, 0x88, 0x78, 0x3c, 0xf5, 0x83, 0xd8,
0xf1, 0x3d, 0xbd, 0x2d, 0xec, 0x0f, 0xca, 0xf6, 0x5f, 0xf0, 0xf8, 0x8d, 0x50, 0x5f, 0xae, 0x99,
0x83, 0x28, 0x1d, 0x90, 0xa7, 0xcd, 0x5d, 0xe7, 0x96, 0x87, 0xd3, 0xf8, 0x4e, 0xef, 0xd4, 0x79,
0xbe, 0x92, 0xfa, 0xb7, 0x77, 0xe4, 0x69, 0xa7, 0x03, 0x3c, 0x86, 0xfe, 0x6c, 0xc9, 0x67, 0x37,
0xe4, 0xd7, 0x15, 0x7e, 0x7b, 0x65, 0xbf, 0x97, 0xa4, 0x15, 0x5e, 0xbd, 0x99, 0xfc, 0xc4, 0x67,
0xd0, 0x9d, 0xf9, 0xab, 0x95, 0x13, 0xeb, 0x3d, 0xe1, 0xb1, 0x5b, 0xf1, 0x10, 0xba, 0xcb, 0x35,
0x53, 0x59, 0xd1, 0x76, 0xbd, 0x4b, 0x78, 0x78, 0xaf, 0xf7, 0xeb, 0xb6, 0xeb, 0x67, 0xa4, 0xa2,
0xed, 0x12, 0x36, 0x94, 0x8a, 0xe3, 0x39, 0xf1, 0x74, 0xb6, 0xb4, 0x1c, 0x4f, 0x1f, 0xd4, 0xa5,
0x32, 0xf1, 0x9c, 0xf8, 0x25, 0xa9, 0x29, 0x15, 0x27, 0x1d, 0xe0, 0x27, 0x30, 0xbc, 0xe6, 0x0b,
0xc7, 0x9b, 0x5e, 0xbb, 0xfe, 0xec, 0x46, 0x07, 0xe1, 0xaa, 0x97, 0x5d, 0xcf, 0xc8, 0xe0, 0x8c,
0xf4, 0x97, 0x6b, 0x26, 0x5c, 0x67, 0x23, 0xfc, 0x18, 0x06, 0xdc, 0xb3, 0x95, 0xeb, 0x50, 0xb8,
0xee, 0x57, 0x10, 0xe0, 0xd9, 0xa9, 0x63, 0x9f, 0xab, 0x6f, 0x4a, 0x2d, 0x08, 0x7d, 0x7f, 0xae,
0x6f, 0xd4, 0xa5, 0x76, 0x45, 0x2a, 0x4a, 0x4d, 0xd8, 0x9c, 0xf5, 0xa0, 0x73, 0x6b, 0xb9, 0x09,
0x37, 0x3e, 0x84, 0x61, 0x01, 0x56, 0xa8, 0x43, 0x6f, 0xc5, 0xa3, 0xc8, 0x5a, 0x70, 0x81, 0xbd,
0x81, 0x99, 0x0e, 0x8d, 0x11, 0x6c, 0x14, 0x41, 0x65, 0x6c, 0x66, 0x8e, 0x04, 0x1c, 0xe3, 0xc7,
0xc0, 0xaa, 0xb8, 0x40, 0x06, 0xeb, 0x37, 0xfc, 0x5e, 0x05, 0xa2, 0x4f, 0xdc, 0x55, 0xd3, 0x0a,
0xb4, 0x0e, 0x4c, 0xb5, 0x06, 0x23, 0xf3, 0xcd, 0x90, 0x81, 0x23, 0x68, 0xc5, 0x77, 0xc2, 0x75,
0xc3, 0x6c, 0xc5, 0x77, 0xc6, 0x23, 0x18, 0x95, 0x51, 0xf0, 0xc0, 0xe2, 0xbb, 0xd9, 0x02, 0xc5,
0x31, 0xd2, 0x5c, 0xf2, 0xa8, 0xa5, 0x89, 0x1c, 0x18, 0x2f, 0x32, 0x2b, 0xb1, 0x23, 0xc5, 0x35,
0x6e, 0xc8, 0x35, 0xee, 0x43, 0x77, 0xc9, 0x9d, 0xc5, 0x32, 0x16, 0x8b, 0x6c, 0x9b, 0x6a, 0x64,
0x6c, 0xc1, 0x66, 0x09, 0x55, 0xc6, 0xab, 0x6c, 0xd9, 0x19, 0x0a, 0xf0, 0x87, 0x00, 0xb7, 0x96,
0xeb, 0xd8, 0x56, 0xec, 0x87, 0x91, 0xae, 0x3d, 0x5a, 0x3f, 0x1a, 0x1e, 0x33, 0x75, 0x12, 0x5f,
0xa5, 0x0a, 0xb3, 0x60, 0x63, 0xbc, 0x86, 0xed, 0x07, 0x80, 0x40, 0x84, 0xf6, 0xd2, 0x8a, 0x96,
0x6a, 0x59, 0xe2, 0x1b, 0x3f, 0xa0, 0x75, 0x59, 0x36, 0x0f, 0x55, 0xa9, 0x6f, 0xaa, 0xb0, 0x97,
0x42, 0x68, 0x2a, 0xa5, 0xf1, 0x18, 0xb6, 0x2a, 0x28, 0x29, 0x64, 0xa4, 0x95, 0x32, 0xfa, 0x43,
0x07, 0xfa, 0x26, 0x8f, 0x02, 0xdf, 0x8b, 0x38, 0xbe, 0x80, 0x01, 0xbf, 0x9b, 0x71, 0x59, 0xf0,
0x5a, 0x05, 0xb0, 0xd2, 0xe6, 0x3c, 0xd5, 0x13, 0xd8, 0x33, 0x63, 0x7c, 0xac, 0xc8, 0xaa, 0xca,
0x40, 0xca, 0xa9, 0xc8, 0x56, 0x4f, 0x53, 0xb6, 0x5a, 0xaf, 0x54, 0xab, 0xb4, 0xad, 0xd0, 0xd5,
0x63, 0x45, 0x57, 0xed, 0xda, 0xc0, 0x25, 0xbe, 0x3a, 0x29, 0xf1, 0x55, 0xa7, 0x76, 0xf9, 0x0d,
0x84, 0x75, 0x52, 0x22, 0xac, 0x6e, 0xad, 0x6b, 0x03, 0x63, 0x7d, 0x54, 0x60, 0xac, 0x5e, 0xa5,
0x50, 0xa5, 0x63, 0x0d, 0x65, 0x3d, 0xcf, 0x28, 0xab, 0x5f, 0x21, 0x39, 0xe5, 0x52, 0xe5, 0xac,
0xa7, 0x29, 0x90, 0x07, 0xb5, 0x9b, 0x56, 0x21, 0xad, 0x93, 0x12, 0x69, 0x41, 0x6d, 0x3a, 0x0d,
0xac, 0xf5, 0x93, 0x32, 0x6b, 0x49, 0xea, 0x39, 0xac, 0xf8, 0x36, 0xd2, 0xd6, 0x8f, 0x8a, 0xb4,
0xb5, 0x51, 0x21, 0x4b, 0x85, 0x85, 0x3a, 0xde, 0x7a, 0x9a, 0xf2, 0xd6, 0x66, 0x6d, 0x7a, 0x4d,
0xc4, 0xf5, 0x98, 0xea, 0xa6, 0x82, 0x4b, 0xaa, 0x79, 0x1e, 0x86, 0x7e, 0xa8, 0x38, 0x47, 0x0e,
0x8c, 0x23, 0xaa, 0xf9, 0x1c, 0x8d, 0xff, 0x87, 0xe4, 0x44, 0x8d, 0x17, 0xb0, 0x68, 0xfc, 0x56,
0xcb, 0x7d, 0x09, 0x70, 0x54, 0x99, 0xb6, 0x15, 0x5b, 0xca, 0x51, 0x7c, 0x53, 0xbc, 0x5b, 0x1e,
0x46, 0x84, 0x3c, 0xc9, 0x6b, 0xe9, 0x10, 0x9f, 0xc0, 0xb6, 0x6b, 0x45, 0xb1, 0xdc, 0x94, 0xa9,
0x2a, 0xc2, 0x75, 0x51, 0x84, 0x5b, 0xa4, 0x90, 0xbb, 0x21, 0xc4, 0xf8, 0x03, 0xd8, 0x29, 0xd8,
0x5a, 0x41, 0x30, 0x15, 0x14, 0xd0, 0x16, 0x14, 0xc0, 0x32, 0xeb, 0xd3, 0x20, 0xb8, 0xb4, 0xa2,
0xa5, 0xf1, 0x41, 0x9e, 0x7f, 0x89, 0x71, 0x5d, 0x7f, 0x91, 0x32, 0xae, 0xeb, 0x2f, 0x8c, 0x5f,
0xe5, 0x66, 0x39, 0xb9, 0x7e, 0x07, 0xda, 0x33, 0xdf, 0x96, 0xd9, 0x8f, 0x8e, 0xb7, 0xd4, 0x8e,
0xbf, 0xf4, 0x6d, 0xfe, 0xf6, 0x3e, 0xe0, 0xa6, 0x50, 0x66, 0x99, 0xb6, 0x24, 0x07, 0x89, 0x4c,
0x55, 0xfc, 0xf5, 0x3c, 0xfe, 0x2f, 0x89, 0x6e, 0x4a, 0x58, 0x7f, 0x9f, 0xd1, 0x7f, 0x9e, 0x9f,
0x87, 0x24, 0xf5, 0x6f, 0x26, 0xb6, 0xbc, 0x0a, 0xde, 0x63, 0xec, 0x5f, 0xd0, 0x6d, 0x55, 0x2c,
0xe7, 0xf7, 0x19, 0x7c, 0x27, 0x3f, 0xd2, 0xac, 0x90, 0x8d, 0x5d, 0xc0, 0x87, 0x15, 0x2a, 0x6f,
0xe5, 0x72, 0xed, 0xe1, 0xf7, 0xa0, 0x63, 0x3b, 0xf3, 0x79, 0xa4, 0xb7, 0x1b, 0x6e, 0x27, 0xa9,
0x36, 0x7e, 0xd7, 0x82, 0xae, 0xbc, 0x5b, 0xf0, 0x90, 0x78, 0xce, 0x72, 0xbc, 0xa9, 0x63, 0xa7,
0x15, 0x23, 0xc6, 0x13, 0xbb, 0xe9, 0xb6, 0xa4, 0x54, 0x62, 0x67, 0xc5, 0x15, 0xd8, 0xc5, 0x37,
0x1e, 0x40, 0xcf, 0x4b, 0x56, 0xd3, 0xf8, 0x2e, 0x12, 0xa8, 0x6e, 0x9b, 0x5d, 0x2f, 0x59, 0xbd,
0xbd, 0x8b, 0xf0, 0x18, 0x36, 0x0b, 0xd0, 0x77, 0x6c, 0x45, 0xe0, 0x23, 0xb5, 0x34, 0xb1, 0xee,
0xc9, 0x2b, 0x73, 0x98, 0x15, 0xc1, 0xc4, 0xc6, 0x23, 0x10, 0x35, 0x31, 0x95, 0x24, 0x29, 0x6b,
0xa5, 0x2b, 0xf6, 0x6d, 0x44, 0x72, 0xc5, 0xa2, 0x74, 0x71, 0x7e, 0x0b, 0x06, 0xb4, 0x93, 0xd2,
0xa4, 0x27, 0x4c, 0xfa, 0x24, 0x10, 0xca, 0x0f, 0x61, 0x2b, 0xbf, 0x8c, 0xa5, 0x49, 0x5f, 0x46,
0xc9, 0xc5, 0xc2, 0xf0, 0x10, 0xfa, 0x59, 0x4d, 0x0e, 0x84, 0x45, 0xcf, 0x52, 0xa5, 0x38, 0x81,
0x9e, 0x5a, 0x62, 0xed, 0xc5, 0xfd, 0x04, 0x3a, 0x81, 0x15, 0xc6, 0x91, 0xba, 0x20, 0x53, 0x82,
0xbb, 0xb2, 0x42, 0xea, 0x95, 0xd4, 0xf5, 0x2d, 0x4d, 0x8c, 0x13, 0xd8, 0x2c, 0xc9, 0x89, 0xd1,
0x62, 0x3f, 0xb6, 0x5c, 0x75, 0x75, 0xcb, 0x41, 0x36, 0x4d, 0x2b, 0x9f, 0xc6, 0x38, 0x81, 0x41,
0x76, 0x86, 0x74, 0x2c, 0x41, 0x72, 0xfd, 0x59, 0xd6, 0xd9, 0xa8, 0x11, 0x85, 0x0b, 0xfc, 0xaf,
0x55, 0x0f, 0xd1, 0x36, 0xe5, 0xe0, 0xc9, 0x9f, 0x34, 0x18, 0x7e, 0x2e, 0x29, 0x90, 0xd0, 0x88,
0x5b, 0x30, 0x7c, 0x9d, 0xb8, 0xae, 0x12, 0xb1, 0x35, 0xec, 0x43, 0x9b, 0x98, 0x93, 0x69, 0x38,
0x80, 0x8e, 0x60, 0x46, 0xd6, 0x22, 0x21, 0x51, 0x22, 0x5b, 0xc7, 0x4d, 0x18, 0x64, 0x1c, 0xc4,
0xda, 0x34, 0xcc, 0x28, 0x99, 0x75, 0x68, 0x98, 0x51, 0x0f, 0xdb, 0xc6, 0x21, 0xf4, 0x14, 0x53,
0x30, 0x44, 0x80, 0xae, 0x3c, 0x29, 0xb6, 0x43, 0xa1, 0x45, 0x91, 0xb3, 0x5d, 0x72, 0xc9, 0xa0,
0xcd, 0xf6, 0x70, 0x04, 0x90, 0x83, 0x9a, 0xed, 0xe3, 0x06, 0xf4, 0x53, 0x38, 0xb3, 0x03, 0xf2,
0x13, 0x05, 0xcc, 0xf4, 0x27, 0xbf, 0xef, 0x40, 0x3f, 0xad, 0x29, 0xec, 0x42, 0xeb, 0xcd, 0x67,
0x6c, 0x0d, 0xb7, 0x61, 0x73, 0xe2, 0xc5, 0x3c, 0xf4, 0x2c, 0xf7, 0x9c, 0xee, 0x03, 0xa6, 0x91,
0xe8, 0xdc, 0x9b, 0xf9, 0xb6, 0xe3, 0x2d, 0xa4, 0xa8, 0x45, 0x31, 0xcf, 0x2c, 0xfb, 0xb5, 0xef,
0xcd, 0x38, 0x5b, 0x47, 0x06, 0x1b, 0x5f, 0x7a, 0x56, 0x12, 0x2f, 0xfd, 0xd0, 0xf9, 0x0d, 0xb7,
0x59, 0x1b, 0xf7, 0x60, 0x7b, 0xe2, 0x45, 0xc9, 0x7c, 0xee, 0xcc, 0x1c, 0xee, 0xc5, 0x9f, 0x26,
0x9e, 0x1d, 0xb1, 0x0e, 0x22, 0x8c, 0xbe, 0xf4, 0x6e, 0x3c, 0xff, 0x6b, 0x4f, 0x75, 0x5d, 0xac,
0x8b, 0x3a, 0xec, 0x9e, 0x59, 0x11, 0x7f, 0x95, 0x04, 0xae, 0x33, 0xb3, 0x62, 0x7e, 0x6a, 0xdb,
0x21, 0x8f, 0x22, 0xc6, 0x29, 0x08, 0x69, 0xca, 0x73, 0xcf, 0x53, 0x87, 0x52, 0x7c, 0xce, 0x23,
0xb6, 0xc0, 0x43, 0xd8, 0x7b, 0xa0, 0x11, 0x33, 0x2f, 0xf1, 0xdb, 0xa0, 0x57, 0x55, 0x17, 0x56,
0x74, 0x15, 0x3a, 0x33, 0xce, 0x1c, 0xdc, 0x05, 0x26, 0xb5, 0x02, 0xc6, 0x13, 0x2f, 0x48, 0x62,
0xf6, 0xeb, 0x74, 0x7e, 0x25, 0x7d, 0x93, 0xc4, 0x24, 0xbe, 0xa9, 0x88, 0xaf, 0x04, 0x54, 0x98,
0x8b, 0x07, 0xb0, 0x53, 0x10, 0x7f, 0x41, 0xf9, 0xd1, 0xee, 0xac, 0xf2, 0xf5, 0x4a, 0x85, 0xb3,
0xf0, 0xac, 0x38, 0x09, 0x39, 0xf3, 0x70, 0x1f, 0x90, 0x34, 0x6a, 0x4b, 0xd2, 0xc4, 0xfd, 0x74,
0x06, 0x25, 0x57, 0x33, 0x04, 0x55, 0xb1, 0x9b, 0x2c, 0x1c, 0x8f, 0xbd, 0xc3, 0x3d, 0x60, 0x17,
0xfe, 0xad, 0x92, 0x9e, 0x7b, 0xb1, 0x13, 0xdf, 0xb3, 0x3f, 0x6b, 0xb8, 0x0b, 0x5b, 0xb9, 0xf8,
0x22, 0xf4, 0x93, 0x80, 0xfd, 0x45, 0xc3, 0x03, 0xc0, 0x5c, 0x7a, 0x15, 0xfa, 0x81, 0x1f, 0x59,
0x2e, 0xfb, 0xab, 0x86, 0xfb, 0xb0, 0x7d, 0xe1, 0xdf, 0x66, 0xa7, 0x20, 0x1d, 0xfe, 0x96, 0x3a,
0x64, 0xf2, 0xcf, 0xf9, 0xea, 0x9a, 0x87, 0xec, 0xef, 0x1a, 0x1e, 0xc2, 0x6e, 0x51, 0x91, 0xc5,
0xfa, 0x87, 0xa6, 0x56, 0x94, 0xa9, 0xbe, 0xf2, 0x63, 0xce, 0xfe, 0x99, 0x8a, 0xd5, 0x3e, 0xa8,
0x40, 0xff, 0xd2, 0x70, 0x07, 0x46, 0xb9, 0x58, 0xd8, 0xfe, 0x5b, 0xc3, 0x31, 0xec, 0x95, 0x84,
0x8e, 0xb7, 0xb8, 0xa2, 0xea, 0x63, 0xff, 0xd1, 0x8e, 0xff, 0xd8, 0x81, 0xad, 0xd3, 0xb3, 0x97,
0x93, 0xd3, 0x40, 0x4e, 0x40, 0x77, 0xf9, 0x73, 0x59, 0x73, 0x58, 0xf3, 0xef, 0x7f, 0x5c, 0xd7,
0x64, 0xe3, 0xb1, 0x2a, 0x4d, 0xac, 0x7b, 0x04, 0x18, 0xd7, 0xf6, 0xda, 0x34, 0x89, 0x6c, 0x6b,
0x1e, 0xbe, 0x05, 0x8c, 0xeb, 0x1a, 0x6e, 0xfc, 0x69, 0xa1, 0xd4, 0xb1, 0xe9, 0x45, 0x60, 0xdc,
0xd8, 0x7a, 0x93, 0x7f, 0xde, 0x87, 0x34, 0xbd, 0x0b, 0x8c, 0x1b, 0xfb, 0x6f, 0x7c, 0x91, 0xb1,
0x07, 0xd6, 0xbf, 0x0e, 0x8c, 0x1b, 0x5a, 0x70, 0xda, 0x1e, 0xd9, 0x43, 0xd4, 0xfd, 0xe9, 0x1f,
0xd7, 0x76, 0xd5, 0xe4, 0x23, 0x7b, 0x83, 0xba, 0x7f, 0xd3, 0xe3, 0xda, 0x56, 0x15, 0x3f, 0x4e,
0x29, 0x0d, 0x6b, 0x1f, 0x23, 0xc6, 0xf5, 0xfd, 0x3e, 0x6d, 0x4c, 0xfe, 0x37, 0xb2, 0xe9, 0x95,
0x61, 0xdc, 0xd8, 0xc9, 0xe3, 0x69, 0x91, 0x23, 0xb1, 0xf1, 0xad, 0x61, 0xdc, 0xdc, 0xcf, 0xe3,
0x27, 0x39, 0xad, 0x62, 0xc3, 0x8b, 0xc3, 0xb8, 0xa9, 0xa5, 0xbf, 0xee, 0x8a, 0xc7, 0xac, 0x8f,
0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x1e, 0x2e, 0xe2, 0x17, 0xe1, 0x12, 0x00, 0x00,
2016-01-30 19:36:33 -08:00
}