// Code generated by protoc-gen-gogo. DO NOT EDIT. // source: colinearcore/query.proto package types import ( context "context" fmt "fmt" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" io "io" math "math" math_bits "math/bits" ) // 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.GoGoProtoPackageIsVersion3 // please upgrade the proto package // QueryParamsRequest is request type for the Query/Params RPC method. type QueryParamsRequest struct { } func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryParamsRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryParamsRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryParamsRequest.Merge(m, src) } func (m *QueryParamsRequest) XXX_Size() int { return m.Size() } func (m *QueryParamsRequest) XXX_DiscardUnknown() { xxx_messageInfo_QueryParamsRequest.DiscardUnknown(m) } var xxx_messageInfo_QueryParamsRequest proto.InternalMessageInfo // QueryParamsResponse is response type for the Query/Params RPC method. type QueryParamsResponse struct { // params holds all the parameters of this module. Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` } func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryParamsResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryParamsResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryParamsResponse.Merge(m, src) } func (m *QueryParamsResponse) XXX_Size() int { return m.Size() } func (m *QueryParamsResponse) XXX_DiscardUnknown() { xxx_messageInfo_QueryParamsResponse.DiscardUnknown(m) } var xxx_messageInfo_QueryParamsResponse proto.InternalMessageInfo func (m *QueryParamsResponse) GetParams() Params { if m != nil { return m.Params } return Params{} } type QueryGetNextAuctionRequest struct { } func (m *QueryGetNextAuctionRequest) Reset() { *m = QueryGetNextAuctionRequest{} } func (m *QueryGetNextAuctionRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetNextAuctionRequest) ProtoMessage() {} func (*QueryGetNextAuctionRequest) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{2} } func (m *QueryGetNextAuctionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryGetNextAuctionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryGetNextAuctionRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryGetNextAuctionRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryGetNextAuctionRequest.Merge(m, src) } func (m *QueryGetNextAuctionRequest) XXX_Size() int { return m.Size() } func (m *QueryGetNextAuctionRequest) XXX_DiscardUnknown() { xxx_messageInfo_QueryGetNextAuctionRequest.DiscardUnknown(m) } var xxx_messageInfo_QueryGetNextAuctionRequest proto.InternalMessageInfo type QueryGetNextAuctionResponse struct { NextAuction NextAuction `protobuf:"bytes,1,opt,name=NextAuction,proto3" json:"NextAuction"` } func (m *QueryGetNextAuctionResponse) Reset() { *m = QueryGetNextAuctionResponse{} } func (m *QueryGetNextAuctionResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetNextAuctionResponse) ProtoMessage() {} func (*QueryGetNextAuctionResponse) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{3} } func (m *QueryGetNextAuctionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryGetNextAuctionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryGetNextAuctionResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryGetNextAuctionResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryGetNextAuctionResponse.Merge(m, src) } func (m *QueryGetNextAuctionResponse) XXX_Size() int { return m.Size() } func (m *QueryGetNextAuctionResponse) XXX_DiscardUnknown() { xxx_messageInfo_QueryGetNextAuctionResponse.DiscardUnknown(m) } var xxx_messageInfo_QueryGetNextAuctionResponse proto.InternalMessageInfo func (m *QueryGetNextAuctionResponse) GetNextAuction() NextAuction { if m != nil { return m.NextAuction } return NextAuction{} } type QueryGetAuctionRequest struct { Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"` } func (m *QueryGetAuctionRequest) Reset() { *m = QueryGetAuctionRequest{} } func (m *QueryGetAuctionRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAuctionRequest) ProtoMessage() {} func (*QueryGetAuctionRequest) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{4} } func (m *QueryGetAuctionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryGetAuctionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryGetAuctionRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryGetAuctionRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryGetAuctionRequest.Merge(m, src) } func (m *QueryGetAuctionRequest) XXX_Size() int { return m.Size() } func (m *QueryGetAuctionRequest) XXX_DiscardUnknown() { xxx_messageInfo_QueryGetAuctionRequest.DiscardUnknown(m) } var xxx_messageInfo_QueryGetAuctionRequest proto.InternalMessageInfo func (m *QueryGetAuctionRequest) GetIndex() string { if m != nil { return m.Index } return "" } type QueryGetAuctionResponse struct { Auction Auction `protobuf:"bytes,1,opt,name=auction,proto3" json:"auction"` } func (m *QueryGetAuctionResponse) Reset() { *m = QueryGetAuctionResponse{} } func (m *QueryGetAuctionResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAuctionResponse) ProtoMessage() {} func (*QueryGetAuctionResponse) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{5} } func (m *QueryGetAuctionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryGetAuctionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryGetAuctionResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryGetAuctionResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryGetAuctionResponse.Merge(m, src) } func (m *QueryGetAuctionResponse) XXX_Size() int { return m.Size() } func (m *QueryGetAuctionResponse) XXX_DiscardUnknown() { xxx_messageInfo_QueryGetAuctionResponse.DiscardUnknown(m) } var xxx_messageInfo_QueryGetAuctionResponse proto.InternalMessageInfo func (m *QueryGetAuctionResponse) GetAuction() Auction { if m != nil { return m.Auction } return Auction{} } type QueryAllAuctionRequest struct { Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"` } func (m *QueryAllAuctionRequest) Reset() { *m = QueryAllAuctionRequest{} } func (m *QueryAllAuctionRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllAuctionRequest) ProtoMessage() {} func (*QueryAllAuctionRequest) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{6} } func (m *QueryAllAuctionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryAllAuctionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryAllAuctionRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryAllAuctionRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryAllAuctionRequest.Merge(m, src) } func (m *QueryAllAuctionRequest) XXX_Size() int { return m.Size() } func (m *QueryAllAuctionRequest) XXX_DiscardUnknown() { xxx_messageInfo_QueryAllAuctionRequest.DiscardUnknown(m) } var xxx_messageInfo_QueryAllAuctionRequest proto.InternalMessageInfo func (m *QueryAllAuctionRequest) GetPagination() *query.PageRequest { if m != nil { return m.Pagination } return nil } type QueryAllAuctionResponse struct { Auction []Auction `protobuf:"bytes,1,rep,name=auction,proto3" json:"auction"` Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } func (m *QueryAllAuctionResponse) Reset() { *m = QueryAllAuctionResponse{} } func (m *QueryAllAuctionResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllAuctionResponse) ProtoMessage() {} func (*QueryAllAuctionResponse) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{7} } func (m *QueryAllAuctionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryAllAuctionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryAllAuctionResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryAllAuctionResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryAllAuctionResponse.Merge(m, src) } func (m *QueryAllAuctionResponse) XXX_Size() int { return m.Size() } func (m *QueryAllAuctionResponse) XXX_DiscardUnknown() { xxx_messageInfo_QueryAllAuctionResponse.DiscardUnknown(m) } var xxx_messageInfo_QueryAllAuctionResponse proto.InternalMessageInfo func (m *QueryAllAuctionResponse) GetAuction() []Auction { if m != nil { return m.Auction } return nil } func (m *QueryAllAuctionResponse) GetPagination() *query.PageResponse { if m != nil { return m.Pagination } return nil } type QueryAuctionBidsRequest struct { Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"` } func (m *QueryAuctionBidsRequest) Reset() { *m = QueryAuctionBidsRequest{} } func (m *QueryAuctionBidsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAuctionBidsRequest) ProtoMessage() {} func (*QueryAuctionBidsRequest) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{8} } func (m *QueryAuctionBidsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryAuctionBidsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryAuctionBidsRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryAuctionBidsRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryAuctionBidsRequest.Merge(m, src) } func (m *QueryAuctionBidsRequest) XXX_Size() int { return m.Size() } func (m *QueryAuctionBidsRequest) XXX_DiscardUnknown() { xxx_messageInfo_QueryAuctionBidsRequest.DiscardUnknown(m) } var xxx_messageInfo_QueryAuctionBidsRequest proto.InternalMessageInfo func (m *QueryAuctionBidsRequest) GetIndex() string { if m != nil { return m.Index } return "" } type QueryAuctionBidsResponse struct { Bids []*Bid `protobuf:"bytes,1,rep,name=bids,proto3" json:"bids,omitempty"` } func (m *QueryAuctionBidsResponse) Reset() { *m = QueryAuctionBidsResponse{} } func (m *QueryAuctionBidsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAuctionBidsResponse) ProtoMessage() {} func (*QueryAuctionBidsResponse) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{9} } func (m *QueryAuctionBidsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryAuctionBidsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryAuctionBidsResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryAuctionBidsResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryAuctionBidsResponse.Merge(m, src) } func (m *QueryAuctionBidsResponse) XXX_Size() int { return m.Size() } func (m *QueryAuctionBidsResponse) XXX_DiscardUnknown() { xxx_messageInfo_QueryAuctionBidsResponse.DiscardUnknown(m) } var xxx_messageInfo_QueryAuctionBidsResponse proto.InternalMessageInfo func (m *QueryAuctionBidsResponse) GetBids() []*Bid { if m != nil { return m.Bids } return nil } type QueryGetLockedUsersRequest struct { } func (m *QueryGetLockedUsersRequest) Reset() { *m = QueryGetLockedUsersRequest{} } func (m *QueryGetLockedUsersRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetLockedUsersRequest) ProtoMessage() {} func (*QueryGetLockedUsersRequest) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{10} } func (m *QueryGetLockedUsersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryGetLockedUsersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryGetLockedUsersRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryGetLockedUsersRequest) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryGetLockedUsersRequest.Merge(m, src) } func (m *QueryGetLockedUsersRequest) XXX_Size() int { return m.Size() } func (m *QueryGetLockedUsersRequest) XXX_DiscardUnknown() { xxx_messageInfo_QueryGetLockedUsersRequest.DiscardUnknown(m) } var xxx_messageInfo_QueryGetLockedUsersRequest proto.InternalMessageInfo type QueryGetLockedUsersResponse struct { LockedUsers LockedUsers `protobuf:"bytes,1,opt,name=LockedUsers,proto3" json:"LockedUsers"` } func (m *QueryGetLockedUsersResponse) Reset() { *m = QueryGetLockedUsersResponse{} } func (m *QueryGetLockedUsersResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetLockedUsersResponse) ProtoMessage() {} func (*QueryGetLockedUsersResponse) Descriptor() ([]byte, []int) { return fileDescriptor_7b40a5389bf6a896, []int{11} } func (m *QueryGetLockedUsersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } func (m *QueryGetLockedUsersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { return xxx_messageInfo_QueryGetLockedUsersResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) if err != nil { return nil, err } return b[:n], nil } } func (m *QueryGetLockedUsersResponse) XXX_Merge(src proto.Message) { xxx_messageInfo_QueryGetLockedUsersResponse.Merge(m, src) } func (m *QueryGetLockedUsersResponse) XXX_Size() int { return m.Size() } func (m *QueryGetLockedUsersResponse) XXX_DiscardUnknown() { xxx_messageInfo_QueryGetLockedUsersResponse.DiscardUnknown(m) } var xxx_messageInfo_QueryGetLockedUsersResponse proto.InternalMessageInfo func (m *QueryGetLockedUsersResponse) GetLockedUsers() LockedUsers { if m != nil { return m.LockedUsers } return LockedUsers{} } func init() { proto.RegisterType((*QueryParamsRequest)(nil), "colinear.colinearcore.QueryParamsRequest") proto.RegisterType((*QueryParamsResponse)(nil), "colinear.colinearcore.QueryParamsResponse") proto.RegisterType((*QueryGetNextAuctionRequest)(nil), "colinear.colinearcore.QueryGetNextAuctionRequest") proto.RegisterType((*QueryGetNextAuctionResponse)(nil), "colinear.colinearcore.QueryGetNextAuctionResponse") proto.RegisterType((*QueryGetAuctionRequest)(nil), "colinear.colinearcore.QueryGetAuctionRequest") proto.RegisterType((*QueryGetAuctionResponse)(nil), "colinear.colinearcore.QueryGetAuctionResponse") proto.RegisterType((*QueryAllAuctionRequest)(nil), "colinear.colinearcore.QueryAllAuctionRequest") proto.RegisterType((*QueryAllAuctionResponse)(nil), "colinear.colinearcore.QueryAllAuctionResponse") proto.RegisterType((*QueryAuctionBidsRequest)(nil), "colinear.colinearcore.QueryAuctionBidsRequest") proto.RegisterType((*QueryAuctionBidsResponse)(nil), "colinear.colinearcore.QueryAuctionBidsResponse") proto.RegisterType((*QueryGetLockedUsersRequest)(nil), "colinear.colinearcore.QueryGetLockedUsersRequest") proto.RegisterType((*QueryGetLockedUsersResponse)(nil), "colinear.colinearcore.QueryGetLockedUsersResponse") } func init() { proto.RegisterFile("colinearcore/query.proto", fileDescriptor_7b40a5389bf6a896) } var fileDescriptor_7b40a5389bf6a896 = []byte{ // 675 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0x3d, 0x6f, 0xd3, 0x40, 0x1c, 0xc6, 0x73, 0xa5, 0x2f, 0xe2, 0xba, 0x1d, 0xa5, 0x14, 0xd3, 0xba, 0x70, 0x05, 0x4a, 0x03, 0xf8, 0x94, 0x30, 0x74, 0x40, 0x42, 0x6a, 0x06, 0x2a, 0x55, 0x08, 0x15, 0x4b, 0x0c, 0xb0, 0x84, 0x4b, 0x7c, 0xb2, 0x2c, 0x5c, 0x9f, 0x6b, 0x3b, 0x28, 0x15, 0x62, 0x61, 0x64, 0x42, 0x62, 0x60, 0x61, 0x01, 0x09, 0xf1, 0x41, 0x58, 0x3a, 0x56, 0x62, 0x61, 0x42, 0x28, 0xe1, 0x83, 0xa0, 0x9c, 0xcf, 0xe9, 0x5d, 0xed, 0xd8, 0xe9, 0xd6, 0xde, 0xff, 0xe5, 0xf9, 0xd9, 0x79, 0x9e, 0x33, 0x5c, 0xe9, 0x72, 0xdf, 0x0b, 0x18, 0x8d, 0xba, 0x3c, 0x62, 0xe4, 0xb0, 0xc7, 0xa2, 0x23, 0x2b, 0x8c, 0x78, 0xc2, 0xd1, 0xe5, 0xac, 0x62, 0xa9, 0x2d, 0xc6, 0x92, 0xcb, 0x5d, 0x2e, 0x3a, 0xc8, 0xe8, 0xaf, 0xb4, 0xd9, 0x58, 0x75, 0x39, 0x77, 0x7d, 0x46, 0x68, 0xe8, 0x11, 0x1a, 0x04, 0x3c, 0xa1, 0x89, 0xc7, 0x83, 0x58, 0x56, 0xeb, 0x5d, 0x1e, 0x1f, 0xf0, 0x98, 0x74, 0x68, 0x2c, 0x35, 0xc8, 0x9b, 0x46, 0x87, 0x25, 0xb4, 0x41, 0x42, 0xea, 0x7a, 0x81, 0x68, 0x96, 0xbd, 0x57, 0x35, 0xa0, 0x90, 0x46, 0xf4, 0x20, 0x5b, 0xb3, 0xae, 0x95, 0x02, 0xd6, 0x4f, 0xda, 0xb4, 0xd7, 0x55, 0x66, 0x0d, 0xad, 0x41, 0xaf, 0x2d, 0x6b, 0xb5, 0x8e, 0xe7, 0x14, 0x2e, 0xf5, 0x79, 0xf7, 0x35, 0x73, 0xda, 0xbd, 0x98, 0x45, 0x52, 0x15, 0x2f, 0x41, 0xf4, 0x6c, 0x84, 0xbc, 0x2f, 0x50, 0x6c, 0x76, 0xd8, 0x63, 0x71, 0x82, 0x6d, 0x78, 0x49, 0x3b, 0x8d, 0x43, 0x1e, 0xc4, 0x0c, 0x3d, 0x84, 0xf3, 0x29, 0xf2, 0x0a, 0xb8, 0x0e, 0xee, 0x2c, 0x36, 0xd7, 0xac, 0xc2, 0xb7, 0x68, 0xa5, 0x63, 0xad, 0xd9, 0xe3, 0x3f, 0xeb, 0x35, 0x5b, 0x8e, 0xe0, 0x55, 0x68, 0x88, 0x9d, 0xbb, 0x2c, 0x79, 0xca, 0xfa, 0xc9, 0x4e, 0xca, 0x9f, 0x29, 0x7a, 0xf0, 0x5a, 0x61, 0x55, 0x2a, 0xef, 0xc1, 0x45, 0xe5, 0x58, 0xca, 0xe3, 0x09, 0xf2, 0x4a, 0xa7, 0x64, 0x50, 0x87, 0xb1, 0x05, 0x97, 0x33, 0x29, 0x1d, 0x02, 0x2d, 0xc1, 0x39, 0x2f, 0x70, 0x58, 0x5f, 0xec, 0xbf, 0x68, 0xa7, 0xff, 0xe0, 0x17, 0xf0, 0x4a, 0xae, 0x5f, 0x62, 0x3d, 0x82, 0x0b, 0x54, 0x43, 0x32, 0x27, 0x20, 0xe9, 0x38, 0xd9, 0x10, 0x7e, 0x25, 0x51, 0x76, 0x7c, 0xff, 0x0c, 0xca, 0x63, 0x08, 0x4f, 0xcd, 0x23, 0x97, 0xdf, 0xb6, 0x52, 0xa7, 0x59, 0x23, 0xa7, 0x59, 0xa9, 0x9b, 0xa5, 0xd3, 0xac, 0x7d, 0xea, 0x32, 0x39, 0x6b, 0x2b, 0x93, 0xf8, 0x1b, 0x90, 0xf4, 0xaa, 0x44, 0x11, 0xfd, 0x85, 0x73, 0xd3, 0xa3, 0x5d, 0x8d, 0x71, 0x46, 0x30, 0x6e, 0x56, 0x32, 0xa6, 0xe2, 0x1a, 0x24, 0xc9, 0x18, 0xa5, 0x8e, 0xe7, 0xc4, 0xe5, 0x3f, 0xc9, 0x1e, 0x5c, 0xc9, 0x0f, 0xc8, 0xa7, 0xb2, 0xe0, 0x6c, 0xc7, 0x73, 0x62, 0xf9, 0x48, 0xc6, 0x84, 0x47, 0x6a, 0x79, 0x8e, 0x2d, 0xfa, 0x54, 0x5f, 0x3e, 0x11, 0xf9, 0x78, 0x3e, 0x8a, 0x47, 0x81, 0x2f, 0xb5, 0xea, 0xa9, 0x2f, 0x95, 0xe3, 0x0a, 0x5f, 0x2a, 0x9d, 0x99, 0x2f, 0x95, 0xa3, 0xe6, 0xcf, 0x05, 0x38, 0x27, 0xb4, 0xd0, 0x07, 0x00, 0xe7, 0xd3, 0x0c, 0xa1, 0xad, 0x09, 0xbb, 0xf2, 0xa1, 0x35, 0xea, 0xd3, 0xb4, 0xa6, 0xdc, 0x78, 0xeb, 0xfd, 0xaf, 0x7f, 0x9f, 0x66, 0x36, 0xd0, 0x0d, 0xa2, 0x5d, 0x10, 0x05, 0xb7, 0x13, 0xfa, 0x0e, 0xb4, 0xec, 0xa1, 0x46, 0x99, 0x4c, 0x61, 0xb8, 0x8d, 0xe6, 0x79, 0x46, 0x24, 0x21, 0x11, 0x84, 0x5b, 0x68, 0xb3, 0x84, 0x50, 0xbd, 0x24, 0xd1, 0x17, 0x00, 0x17, 0x32, 0xc6, 0xfb, 0x15, 0x82, 0x67, 0xf8, 0xac, 0x69, 0xdb, 0x25, 0x5b, 0x53, 0xb0, 0xdd, 0x43, 0xf5, 0x12, 0x36, 0x89, 0x45, 0xde, 0x0a, 0xc7, 0xbe, 0x43, 0x9f, 0x01, 0x84, 0x72, 0xcf, 0x8e, 0xef, 0x97, 0x13, 0xe6, 0xae, 0x83, 0x72, 0xc2, 0x7c, 0xb4, 0x71, 0x5d, 0x10, 0xde, 0x44, 0xb8, 0x9a, 0x10, 0xfd, 0x00, 0x70, 0x51, 0x09, 0x12, 0x2a, 0xd7, 0xca, 0x45, 0xd4, 0x20, 0x53, 0xf7, 0x4b, 0xb8, 0x6d, 0x01, 0xd7, 0x40, 0xa4, 0x1a, 0xae, 0x3d, 0x8a, 0xe8, 0xf8, 0x1d, 0x7e, 0x05, 0x5a, 0xdc, 0x2a, 0xad, 0x98, 0xcf, 0x73, 0xa5, 0x15, 0x0b, 0x42, 0x8e, 0xef, 0x0a, 0xde, 0x5b, 0x68, 0x63, 0x8c, 0x48, 0x26, 0x7e, 0x56, 0x5b, 0xdb, 0xc7, 0x03, 0x13, 0x9c, 0x0c, 0x4c, 0xf0, 0x77, 0x60, 0x82, 0x8f, 0x43, 0xb3, 0x76, 0x32, 0x34, 0x6b, 0xbf, 0x87, 0x66, 0xed, 0xe5, 0xda, 0x78, 0xba, 0xaf, 0xcf, 0x27, 0x47, 0x21, 0x8b, 0x3b, 0xf3, 0xe2, 0x83, 0xfc, 0xe0, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd1, 0xf1, 0xb6, 0x7a, 0xb4, 0x08, 0x00, 0x00, } // 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. const _ = grpc.SupportPackageIsVersion4 // QueryClient is the client API for Query service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type QueryClient interface { // Parameters queries the parameters of the module. Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) // Queries a NextAuction by index. NextAuction(ctx context.Context, in *QueryGetNextAuctionRequest, opts ...grpc.CallOption) (*QueryGetNextAuctionResponse, error) // Queries a Auction by index. Auction(ctx context.Context, in *QueryGetAuctionRequest, opts ...grpc.CallOption) (*QueryGetAuctionResponse, error) // Queries a list of Auction items. AuctionAll(ctx context.Context, in *QueryAllAuctionRequest, opts ...grpc.CallOption) (*QueryAllAuctionResponse, error) // Queries a list of AuctionBids items. AuctionBids(ctx context.Context, in *QueryAuctionBidsRequest, opts ...grpc.CallOption) (*QueryAuctionBidsResponse, error) // Queries a LockedUsers by index. LockedUsers(ctx context.Context, in *QueryGetLockedUsersRequest, opts ...grpc.CallOption) (*QueryGetLockedUsersResponse, error) } type queryClient struct { cc grpc1.ClientConn } func NewQueryClient(cc grpc1.ClientConn) QueryClient { return &queryClient{cc} } func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/Params", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *queryClient) NextAuction(ctx context.Context, in *QueryGetNextAuctionRequest, opts ...grpc.CallOption) (*QueryGetNextAuctionResponse, error) { out := new(QueryGetNextAuctionResponse) err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/NextAuction", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *queryClient) Auction(ctx context.Context, in *QueryGetAuctionRequest, opts ...grpc.CallOption) (*QueryGetAuctionResponse, error) { out := new(QueryGetAuctionResponse) err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/Auction", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *queryClient) AuctionAll(ctx context.Context, in *QueryAllAuctionRequest, opts ...grpc.CallOption) (*QueryAllAuctionResponse, error) { out := new(QueryAllAuctionResponse) err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/AuctionAll", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *queryClient) AuctionBids(ctx context.Context, in *QueryAuctionBidsRequest, opts ...grpc.CallOption) (*QueryAuctionBidsResponse, error) { out := new(QueryAuctionBidsResponse) err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/AuctionBids", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *queryClient) LockedUsers(ctx context.Context, in *QueryGetLockedUsersRequest, opts ...grpc.CallOption) (*QueryGetLockedUsersResponse, error) { out := new(QueryGetLockedUsersResponse) err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/LockedUsers", in, out, opts...) if err != nil { return nil, err } return out, nil } // QueryServer is the server API for Query service. type QueryServer interface { // Parameters queries the parameters of the module. Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) // Queries a NextAuction by index. NextAuction(context.Context, *QueryGetNextAuctionRequest) (*QueryGetNextAuctionResponse, error) // Queries a Auction by index. Auction(context.Context, *QueryGetAuctionRequest) (*QueryGetAuctionResponse, error) // Queries a list of Auction items. AuctionAll(context.Context, *QueryAllAuctionRequest) (*QueryAllAuctionResponse, error) // Queries a list of AuctionBids items. AuctionBids(context.Context, *QueryAuctionBidsRequest) (*QueryAuctionBidsResponse, error) // Queries a LockedUsers by index. LockedUsers(context.Context, *QueryGetLockedUsersRequest) (*QueryGetLockedUsersResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. type UnimplementedQueryServer struct { } func (*UnimplementedQueryServer) Params(ctx context.Context, req *QueryParamsRequest) (*QueryParamsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Params not implemented") } func (*UnimplementedQueryServer) NextAuction(ctx context.Context, req *QueryGetNextAuctionRequest) (*QueryGetNextAuctionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method NextAuction not implemented") } func (*UnimplementedQueryServer) Auction(ctx context.Context, req *QueryGetAuctionRequest) (*QueryGetAuctionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Auction not implemented") } func (*UnimplementedQueryServer) AuctionAll(ctx context.Context, req *QueryAllAuctionRequest) (*QueryAllAuctionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method AuctionAll not implemented") } func (*UnimplementedQueryServer) AuctionBids(ctx context.Context, req *QueryAuctionBidsRequest) (*QueryAuctionBidsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method AuctionBids not implemented") } func (*UnimplementedQueryServer) LockedUsers(ctx context.Context, req *QueryGetLockedUsersRequest) (*QueryGetLockedUsersResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method LockedUsers not implemented") } func RegisterQueryServer(s grpc1.Server, srv QueryServer) { s.RegisterService(&_Query_serviceDesc, srv) } func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryParamsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(QueryServer).Params(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/colinear.colinearcore.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) } return interceptor(ctx, in, info, handler) } func _Query_NextAuction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryGetNextAuctionRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(QueryServer).NextAuction(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/colinear.colinearcore.Query/NextAuction", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).NextAuction(ctx, req.(*QueryGetNextAuctionRequest)) } return interceptor(ctx, in, info, handler) } func _Query_Auction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryGetAuctionRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(QueryServer).Auction(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/colinear.colinearcore.Query/Auction", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Auction(ctx, req.(*QueryGetAuctionRequest)) } return interceptor(ctx, in, info, handler) } func _Query_AuctionAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryAllAuctionRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(QueryServer).AuctionAll(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/colinear.colinearcore.Query/AuctionAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AuctionAll(ctx, req.(*QueryAllAuctionRequest)) } return interceptor(ctx, in, info, handler) } func _Query_AuctionBids_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryAuctionBidsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(QueryServer).AuctionBids(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/colinear.colinearcore.Query/AuctionBids", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AuctionBids(ctx, req.(*QueryAuctionBidsRequest)) } return interceptor(ctx, in, info, handler) } func _Query_LockedUsers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryGetLockedUsersRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(QueryServer).LockedUsers(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/colinear.colinearcore.Query/LockedUsers", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).LockedUsers(ctx, req.(*QueryGetLockedUsersRequest)) } return interceptor(ctx, in, info, handler) } var _Query_serviceDesc = grpc.ServiceDesc{ ServiceName: "colinear.colinearcore.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Params", Handler: _Query_Params_Handler, }, { MethodName: "NextAuction", Handler: _Query_NextAuction_Handler, }, { MethodName: "Auction", Handler: _Query_Auction_Handler, }, { MethodName: "AuctionAll", Handler: _Query_AuctionAll_Handler, }, { MethodName: "AuctionBids", Handler: _Query_AuctionBids_Handler, }, { MethodName: "LockedUsers", Handler: _Query_LockedUsers_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "colinearcore/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l return len(dAtA) - i, nil } func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l { size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0xa return len(dAtA) - i, nil } func (m *QueryGetNextAuctionRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryGetNextAuctionRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryGetNextAuctionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l return len(dAtA) - i, nil } func (m *QueryGetNextAuctionResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryGetNextAuctionResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryGetNextAuctionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l { size, err := m.NextAuction.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0xa return len(dAtA) - i, nil } func (m *QueryGetAuctionRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryGetAuctionRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryGetAuctionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l if len(m.Index) > 0 { i -= len(m.Index) copy(dAtA[i:], m.Index) i = encodeVarintQuery(dAtA, i, uint64(len(m.Index))) i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } func (m *QueryGetAuctionResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryGetAuctionResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryGetAuctionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l { size, err := m.Auction.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0xa return len(dAtA) - i, nil } func (m *QueryAllAuctionRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryAllAuctionRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryAllAuctionRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l if m.Pagination != nil { { size, err := m.Pagination.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } func (m *QueryAllAuctionResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryAllAuctionResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryAllAuctionResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l if m.Pagination != nil { { size, err := m.Pagination.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0x12 } if len(m.Auction) > 0 { for iNdEx := len(m.Auction) - 1; iNdEx >= 0; iNdEx-- { { size, err := m.Auction[iNdEx].MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0xa } } return len(dAtA) - i, nil } func (m *QueryAuctionBidsRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryAuctionBidsRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryAuctionBidsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l if len(m.Index) > 0 { i -= len(m.Index) copy(dAtA[i:], m.Index) i = encodeVarintQuery(dAtA, i, uint64(len(m.Index))) i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } func (m *QueryAuctionBidsResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryAuctionBidsResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryAuctionBidsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l if len(m.Bids) > 0 { for iNdEx := len(m.Bids) - 1; iNdEx >= 0; iNdEx-- { { size, err := m.Bids[iNdEx].MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0xa } } return len(dAtA) - i, nil } func (m *QueryGetLockedUsersRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryGetLockedUsersRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryGetLockedUsersRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l return len(dAtA) - i, nil } func (m *QueryGetLockedUsersResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) if err != nil { return nil, err } return dAtA[:n], nil } func (m *QueryGetLockedUsersResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } func (m *QueryGetLockedUsersResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l { size, err := m.LockedUsers.MarshalToSizedBuffer(dAtA[:i]) if err != nil { return 0, err } i -= size i = encodeVarintQuery(dAtA, i, uint64(size)) } i-- dAtA[i] = 0xa return len(dAtA) - i, nil } func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) v >>= 7 offset++ } dAtA[offset] = uint8(v) return base } func (m *QueryParamsRequest) Size() (n int) { if m == nil { return 0 } var l int _ = l return n } func (m *QueryParamsResponse) Size() (n int) { if m == nil { return 0 } var l int _ = l l = m.Params.Size() n += 1 + l + sovQuery(uint64(l)) return n } func (m *QueryGetNextAuctionRequest) Size() (n int) { if m == nil { return 0 } var l int _ = l return n } func (m *QueryGetNextAuctionResponse) Size() (n int) { if m == nil { return 0 } var l int _ = l l = m.NextAuction.Size() n += 1 + l + sovQuery(uint64(l)) return n } func (m *QueryGetAuctionRequest) Size() (n int) { if m == nil { return 0 } var l int _ = l l = len(m.Index) if l > 0 { n += 1 + l + sovQuery(uint64(l)) } return n } func (m *QueryGetAuctionResponse) Size() (n int) { if m == nil { return 0 } var l int _ = l l = m.Auction.Size() n += 1 + l + sovQuery(uint64(l)) return n } func (m *QueryAllAuctionRequest) Size() (n int) { if m == nil { return 0 } var l int _ = l if m.Pagination != nil { l = m.Pagination.Size() n += 1 + l + sovQuery(uint64(l)) } return n } func (m *QueryAllAuctionResponse) Size() (n int) { if m == nil { return 0 } var l int _ = l if len(m.Auction) > 0 { for _, e := range m.Auction { l = e.Size() n += 1 + l + sovQuery(uint64(l)) } } if m.Pagination != nil { l = m.Pagination.Size() n += 1 + l + sovQuery(uint64(l)) } return n } func (m *QueryAuctionBidsRequest) Size() (n int) { if m == nil { return 0 } var l int _ = l l = len(m.Index) if l > 0 { n += 1 + l + sovQuery(uint64(l)) } return n } func (m *QueryAuctionBidsResponse) Size() (n int) { if m == nil { return 0 } var l int _ = l if len(m.Bids) > 0 { for _, e := range m.Bids { l = e.Size() n += 1 + l + sovQuery(uint64(l)) } } return n } func (m *QueryGetLockedUsersRequest) Size() (n int) { if m == nil { return 0 } var l int _ = l return n } func (m *QueryGetLockedUsersResponse) Size() (n int) { if m == nil { return 0 } var l int _ = l l = m.LockedUsers.Size() n += 1 + l + sovQuery(uint64(l)) return n } func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } func sozQuery(x uint64) (n int) { return sovQuery(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryParamsRequest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryParamsRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryParamsResponse: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryGetNextAuctionRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryGetNextAuctionRequest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryGetNextAuctionRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryGetNextAuctionResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryGetNextAuctionResponse: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryGetNextAuctionResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NextAuction", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } if err := m.NextAuction.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryGetAuctionRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryGetAuctionRequest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryGetAuctionRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Index", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } m.Index = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryGetAuctionResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryGetAuctionResponse: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryGetAuctionResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Auction", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } if err := m.Auction.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryAllAuctionRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryAllAuctionRequest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryAllAuctionRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } if m.Pagination == nil { m.Pagination = &query.PageRequest{} } if err := m.Pagination.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryAllAuctionResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryAllAuctionResponse: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryAllAuctionResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Auction", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } m.Auction = append(m.Auction, Auction{}) if err := m.Auction[len(m.Auction)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Pagination", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } if m.Pagination == nil { m.Pagination = &query.PageResponse{} } if err := m.Pagination.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryAuctionBidsRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryAuctionBidsRequest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryAuctionBidsRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Index", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ stringLen |= uint64(b&0x7F) << shift if b < 0x80 { break } } intStringLen := int(stringLen) if intStringLen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + intStringLen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } m.Index = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryAuctionBidsResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryAuctionBidsResponse: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryAuctionBidsResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Bids", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } m.Bids = append(m.Bids, &Bid{}) if err := m.Bids[len(m.Bids)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryGetLockedUsersRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryGetLockedUsersRequest: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryGetLockedUsersRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func (m *QueryGetLockedUsersResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { preIndex := iNdEx var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= uint64(b&0x7F) << shift if b < 0x80 { break } } fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { return fmt.Errorf("proto: QueryGetLockedUsersResponse: wiretype end group for non-group") } if fieldNum <= 0 { return fmt.Errorf("proto: QueryGetLockedUsersResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field LockedUsers", wireType) } var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowQuery } if iNdEx >= l { return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ msglen |= int(b&0x7F) << shift if b < 0x80 { break } } if msglen < 0 { return ErrInvalidLengthQuery } postIndex := iNdEx + msglen if postIndex < 0 { return ErrInvalidLengthQuery } if postIndex > l { return io.ErrUnexpectedEOF } if err := m.LockedUsers.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:]) if err != nil { return err } if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthQuery } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } iNdEx += skippy } } if iNdEx > l { return io.ErrUnexpectedEOF } return nil } func skipQuery(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 depth := 0 for iNdEx < l { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowQuery } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ wire |= (uint64(b) & 0x7F) << shift if b < 0x80 { break } } wireType := int(wire & 0x7) switch wireType { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowQuery } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } iNdEx++ if dAtA[iNdEx-1] < 0x80 { break } } case 1: iNdEx += 8 case 2: var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { return 0, ErrIntOverflowQuery } if iNdEx >= l { return 0, io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ length |= (int(b) & 0x7F) << shift if b < 0x80 { break } } if length < 0 { return 0, ErrInvalidLengthQuery } iNdEx += length case 3: depth++ case 4: if depth == 0 { return 0, ErrUnexpectedEndOfGroupQuery } depth-- case 5: iNdEx += 4 default: return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } if iNdEx < 0 { return 0, ErrInvalidLengthQuery } if depth == 0 { return iNdEx, nil } } return 0, io.ErrUnexpectedEOF } var ( ErrInvalidLengthQuery = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowQuery = fmt.Errorf("proto: integer overflow") ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group") )