You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

174 lines
6.1 KiB

8 years ago
  1. // Code generated by protoc-gen-go.
  2. // source: types.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package core_grpc is a generated protocol buffer package.
  6. It is generated from these files:
  7. types.proto
  8. It has these top-level messages:
  9. RequestBroadcastTx
  10. ResponseBroadcastTx
  11. */
  12. package core_grpc
  13. import proto "github.com/golang/protobuf/proto"
  14. import fmt "fmt"
  15. import math "math"
  16. import types "github.com/tendermint/abci/types"
  17. import (
  18. context "golang.org/x/net/context"
  19. grpc "google.golang.org/grpc"
  20. )
  21. // Reference imports to suppress errors if they are not otherwise used.
  22. var _ = proto.Marshal
  23. var _ = fmt.Errorf
  24. var _ = math.Inf
  25. // This is a compile-time assertion to ensure that this generated file
  26. // is compatible with the proto package it is being compiled against.
  27. // A compilation error at this line likely means your copy of the
  28. // proto package needs to be updated.
  29. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  30. type RequestBroadcastTx struct {
  31. Tx []byte `protobuf:"bytes,1,opt,name=tx,proto3" json:"tx,omitempty"`
  32. }
  33. func (m *RequestBroadcastTx) Reset() { *m = RequestBroadcastTx{} }
  34. func (m *RequestBroadcastTx) String() string { return proto.CompactTextString(m) }
  35. func (*RequestBroadcastTx) ProtoMessage() {}
  36. func (*RequestBroadcastTx) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  37. func (m *RequestBroadcastTx) GetTx() []byte {
  38. if m != nil {
  39. return m.Tx
  40. }
  41. return nil
  42. }
  43. type ResponseBroadcastTx struct {
  44. CheckTx *types.ResponseCheckTx `protobuf:"bytes,1,opt,name=check_tx,json=checkTx" json:"check_tx,omitempty"`
  45. DeliverTx *types.ResponseDeliverTx `protobuf:"bytes,2,opt,name=deliver_tx,json=deliverTx" json:"deliver_tx,omitempty"`
  46. }
  47. func (m *ResponseBroadcastTx) Reset() { *m = ResponseBroadcastTx{} }
  48. func (m *ResponseBroadcastTx) String() string { return proto.CompactTextString(m) }
  49. func (*ResponseBroadcastTx) ProtoMessage() {}
  50. func (*ResponseBroadcastTx) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  51. func (m *ResponseBroadcastTx) GetCheckTx() *types.ResponseCheckTx {
  52. if m != nil {
  53. return m.CheckTx
  54. }
  55. return nil
  56. }
  57. func (m *ResponseBroadcastTx) GetDeliverTx() *types.ResponseDeliverTx {
  58. if m != nil {
  59. return m.DeliverTx
  60. }
  61. return nil
  62. }
  63. func init() {
  64. proto.RegisterType((*RequestBroadcastTx)(nil), "core_grpc.RequestBroadcastTx")
  65. proto.RegisterType((*ResponseBroadcastTx)(nil), "core_grpc.ResponseBroadcastTx")
  66. }
  67. // Reference imports to suppress errors if they are not otherwise used.
  68. var _ context.Context
  69. var _ grpc.ClientConn
  70. // This is a compile-time assertion to ensure that this generated file
  71. // is compatible with the grpc package it is being compiled against.
  72. const _ = grpc.SupportPackageIsVersion4
  73. // Client API for BroadcastAPI service
  74. type BroadcastAPIClient interface {
  75. BroadcastTx(ctx context.Context, in *RequestBroadcastTx, opts ...grpc.CallOption) (*ResponseBroadcastTx, error)
  76. }
  77. type broadcastAPIClient struct {
  78. cc *grpc.ClientConn
  79. }
  80. func NewBroadcastAPIClient(cc *grpc.ClientConn) BroadcastAPIClient {
  81. return &broadcastAPIClient{cc}
  82. }
  83. func (c *broadcastAPIClient) BroadcastTx(ctx context.Context, in *RequestBroadcastTx, opts ...grpc.CallOption) (*ResponseBroadcastTx, error) {
  84. out := new(ResponseBroadcastTx)
  85. err := grpc.Invoke(ctx, "/core_grpc.BroadcastAPI/BroadcastTx", in, out, c.cc, opts...)
  86. if err != nil {
  87. return nil, err
  88. }
  89. return out, nil
  90. }
  91. // Server API for BroadcastAPI service
  92. type BroadcastAPIServer interface {
  93. BroadcastTx(context.Context, *RequestBroadcastTx) (*ResponseBroadcastTx, error)
  94. }
  95. func RegisterBroadcastAPIServer(s *grpc.Server, srv BroadcastAPIServer) {
  96. s.RegisterService(&_BroadcastAPI_serviceDesc, srv)
  97. }
  98. func _BroadcastAPI_BroadcastTx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  99. in := new(RequestBroadcastTx)
  100. if err := dec(in); err != nil {
  101. return nil, err
  102. }
  103. if interceptor == nil {
  104. return srv.(BroadcastAPIServer).BroadcastTx(ctx, in)
  105. }
  106. info := &grpc.UnaryServerInfo{
  107. Server: srv,
  108. FullMethod: "/core_grpc.BroadcastAPI/BroadcastTx",
  109. }
  110. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  111. return srv.(BroadcastAPIServer).BroadcastTx(ctx, req.(*RequestBroadcastTx))
  112. }
  113. return interceptor(ctx, in, info, handler)
  114. }
  115. var _BroadcastAPI_serviceDesc = grpc.ServiceDesc{
  116. ServiceName: "core_grpc.BroadcastAPI",
  117. HandlerType: (*BroadcastAPIServer)(nil),
  118. Methods: []grpc.MethodDesc{
  119. {
  120. MethodName: "BroadcastTx",
  121. Handler: _BroadcastAPI_BroadcastTx_Handler,
  122. },
  123. },
  124. Streams: []grpc.StreamDesc{},
  125. Metadata: "types.proto",
  126. }
  127. func init() { proto.RegisterFile("types.proto", fileDescriptor0) }
  128. var fileDescriptor0 = []byte{
  129. // 226 bytes of a gzipped FileDescriptorProto
  130. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0xe2, 0x2e, 0xa9, 0x2c, 0x48,
  131. 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x4c, 0xce, 0x2f, 0x4a, 0x8d, 0x4f, 0x2f,
  132. 0x2a, 0x48, 0x96, 0xd2, 0x49, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x2f,
  133. 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0xc9, 0x2d, 0x2e, 0xd0, 0x07,
  134. 0x6b, 0xd1, 0x47, 0xd2, 0xa8, 0xa4, 0xc2, 0x25, 0x14, 0x94, 0x5a, 0x58, 0x9a, 0x5a, 0x5c, 0xe2,
  135. 0x54, 0x94, 0x9f, 0x98, 0x92, 0x9c, 0x58, 0x5c, 0x12, 0x52, 0x21, 0xc4, 0xc7, 0xc5, 0x54, 0x52,
  136. 0x21, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x13, 0xc4, 0x54, 0x52, 0xa1, 0x54, 0xc7, 0x25, 0x1c, 0x94,
  137. 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x8a, 0xac, 0xcc, 0x90, 0x8b, 0x23, 0x39, 0x23, 0x35, 0x39,
  138. 0x3b, 0x1e, 0xaa, 0x98, 0xdb, 0x48, 0x4c, 0x0f, 0x62, 0x38, 0x4c, 0xb5, 0x33, 0x48, 0x3a, 0xa4,
  139. 0x22, 0x88, 0x3d, 0x19, 0xc2, 0x10, 0x32, 0xe1, 0xe2, 0x4c, 0x2c, 0x28, 0x48, 0xcd, 0x4b, 0x01,
  140. 0xe9, 0x61, 0x02, 0xeb, 0x11, 0x47, 0xd3, 0xe3, 0x08, 0x96, 0x0f, 0xa9, 0x08, 0xe2, 0x48, 0x84,
  141. 0xb2, 0x8c, 0x62, 0xb8, 0x78, 0xe0, 0xf6, 0x3a, 0x06, 0x78, 0x0a, 0xf9, 0x70, 0x71, 0x23, 0xbb,
  142. 0x43, 0x56, 0x0f, 0xee, 0x7d, 0x3d, 0x4c, 0xdf, 0x48, 0xc9, 0xa1, 0x48, 0x63, 0x78, 0x23, 0x89,
  143. 0x0d, 0x1c, 0x14, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x68, 0x73, 0x87, 0xb0, 0x52, 0x01,
  144. 0x00, 0x00,
  145. }