|
|
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: common/types.proto
-
- /*
- Package common is a generated protocol buffer package.
-
- It is generated from these files:
- common/types.proto
-
- It has these top-level messages:
- KVPair
- KI64Pair
- */
- //nolint: gas
- package common
-
- import proto "github.com/golang/protobuf/proto"
- import fmt "fmt"
- import math "math"
-
- // Reference imports to suppress errors if they are not otherwise used.
- var _ = proto.Marshal
- var _ = fmt.Errorf
- var _ = math.Inf
-
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the proto package it is being compiled against.
- // 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
-
- // Define these here for compatibility but use tmlibs/common.KVPair.
- type KVPair struct {
- Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
- Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
- }
-
- func (m *KVPair) Reset() { *m = KVPair{} }
- func (m *KVPair) String() string { return proto.CompactTextString(m) }
- func (*KVPair) ProtoMessage() {}
- func (*KVPair) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
-
- func (m *KVPair) GetKey() []byte {
- if m != nil {
- return m.Key
- }
- return nil
- }
-
- func (m *KVPair) GetValue() []byte {
- if m != nil {
- return m.Value
- }
- return nil
- }
-
- // Define these here for compatibility but use tmlibs/common.KI64Pair.
- type KI64Pair struct {
- Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
- Value int64 `protobuf:"varint,2,opt,name=value" json:"value,omitempty"`
- }
-
- func (m *KI64Pair) Reset() { *m = KI64Pair{} }
- func (m *KI64Pair) String() string { return proto.CompactTextString(m) }
- func (*KI64Pair) ProtoMessage() {}
- func (*KI64Pair) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
-
- func (m *KI64Pair) GetKey() []byte {
- if m != nil {
- return m.Key
- }
- return nil
- }
-
- func (m *KI64Pair) GetValue() int64 {
- if m != nil {
- return m.Value
- }
- return 0
- }
-
- func init() {
- proto.RegisterType((*KVPair)(nil), "common.KVPair")
- proto.RegisterType((*KI64Pair)(nil), "common.KI64Pair")
- }
-
- func init() { proto.RegisterFile("common/types.proto", fileDescriptor0) }
-
- var fileDescriptor0 = []byte{
- // 107 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0xce, 0xcf, 0xcd,
- 0xcd, 0xcf, 0xd3, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62,
- 0x83, 0x88, 0x29, 0x19, 0x70, 0xb1, 0x79, 0x87, 0x05, 0x24, 0x66, 0x16, 0x09, 0x09, 0x70, 0x31,
- 0x67, 0xa7, 0x56, 0x4a, 0x30, 0x2a, 0x30, 0x6a, 0xf0, 0x04, 0x81, 0x98, 0x42, 0x22, 0x5c, 0xac,
- 0x65, 0x89, 0x39, 0xa5, 0xa9, 0x12, 0x4c, 0x60, 0x31, 0x08, 0x47, 0xc9, 0x88, 0x8b, 0xc3, 0xdb,
- 0xd3, 0xcc, 0x84, 0x18, 0x3d, 0xcc, 0x50, 0x3d, 0x49, 0x6c, 0x60, 0x4b, 0x8d, 0x01, 0x01, 0x00,
- 0x00, 0xff, 0xff, 0xd8, 0xf1, 0xc3, 0x8c, 0x8a, 0x00, 0x00, 0x00,
- }
|