finish rename
parent
fdf80baf6f
commit
5d2534234d
|
@ -107,7 +107,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
AccountAddressPrefix = "cosmos"
|
AccountAddressPrefix = "colinear"
|
||||||
Name = "colinear"
|
Name = "colinear"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -3,7 +3,7 @@ package colinear.colinearcore;
|
||||||
|
|
||||||
option go_package = "colinear/x/colinear-core/types";
|
option go_package = "colinear/x/colinear-core/types";
|
||||||
|
|
||||||
import "colinear/bid.proto";
|
import "colinear-core/bid.proto";
|
||||||
|
|
||||||
message Auction {
|
message Auction {
|
||||||
string index = 1;
|
string index = 1;
|
||||||
|
|
|
@ -2,9 +2,9 @@ syntax = "proto3";
|
||||||
package colinear.colinearcore;
|
package colinear.colinearcore;
|
||||||
|
|
||||||
import "gogoproto/gogo.proto";
|
import "gogoproto/gogo.proto";
|
||||||
import "colinear/params.proto";
|
import "colinear-core/params.proto";
|
||||||
import "colinear/next_auction.proto";
|
import "colinear-core/next_auction.proto";
|
||||||
import "colinear/auction.proto";
|
import "colinear-core/auction.proto";
|
||||||
// this line is used by starport scaffolding # genesis/proto/import
|
// this line is used by starport scaffolding # genesis/proto/import
|
||||||
|
|
||||||
option go_package = "colinear/x/colinear-core/types";
|
option go_package = "colinear/x/colinear-core/types";
|
||||||
|
|
|
@ -4,10 +4,10 @@ package colinear.colinearcore;
|
||||||
import "gogoproto/gogo.proto";
|
import "gogoproto/gogo.proto";
|
||||||
import "google/api/annotations.proto";
|
import "google/api/annotations.proto";
|
||||||
import "cosmos/base/query/v1beta1/pagination.proto";
|
import "cosmos/base/query/v1beta1/pagination.proto";
|
||||||
import "colinear/params.proto";
|
import "colinear-core/params.proto";
|
||||||
import "colinear/next_auction.proto";
|
import "colinear-core/next_auction.proto";
|
||||||
import "colinear/auction.proto";
|
import "colinear-core/auction.proto";
|
||||||
import "colinear/bid.proto";
|
import "colinear-core/bid.proto";
|
||||||
// this line is used by starport scaffolding # 1
|
// this line is used by starport scaffolding # 1
|
||||||
|
|
||||||
option go_package = "colinear/x/colinear-core/types";
|
option go_package = "colinear/x/colinear-core/types";
|
||||||
|
@ -16,25 +16,25 @@ option go_package = "colinear/x/colinear-core/types";
|
||||||
service Query {
|
service Query {
|
||||||
// Parameters queries the parameters of the module.
|
// Parameters queries the parameters of the module.
|
||||||
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
|
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
|
||||||
option (google.api.http).get = "/colinear/colinear/params";
|
option (google.api.http).get = "/colinear-core/colinear-core/params";
|
||||||
}
|
}
|
||||||
// Queries a NextAuction by index.
|
// Queries a NextAuction by index.
|
||||||
rpc NextAuction(QueryGetNextAuctionRequest) returns (QueryGetNextAuctionResponse) {
|
rpc NextAuction(QueryGetNextAuctionRequest) returns (QueryGetNextAuctionResponse) {
|
||||||
option (google.api.http).get = "/colinear/colinear/next_auction";
|
option (google.api.http).get = "/colinear-core/colinear-core/next_auction";
|
||||||
}
|
}
|
||||||
// Queries a Auction by index.
|
// Queries a Auction by index.
|
||||||
rpc Auction(QueryGetAuctionRequest) returns (QueryGetAuctionResponse) {
|
rpc Auction(QueryGetAuctionRequest) returns (QueryGetAuctionResponse) {
|
||||||
option (google.api.http).get = "/colinear/colinear/auction/{index}";
|
option (google.api.http).get = "/colinear-core/colinear-core/auction/{index}";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Queries a list of Auction items.
|
// Queries a list of Auction items.
|
||||||
rpc AuctionAll(QueryAllAuctionRequest) returns (QueryAllAuctionResponse) {
|
rpc AuctionAll(QueryAllAuctionRequest) returns (QueryAllAuctionResponse) {
|
||||||
option (google.api.http).get = "/colinear/colinear/auction";
|
option (google.api.http).get = "/colinear-core/colinear-core/auction";
|
||||||
}
|
}
|
||||||
|
|
||||||
// Queries a list of AuctionBids items.
|
// Queries a list of AuctionBids items.
|
||||||
rpc AuctionBids(QueryAuctionBidsRequest) returns (QueryAuctionBidsResponse) {
|
rpc AuctionBids(QueryAuctionBidsRequest) returns (QueryAuctionBidsResponse) {
|
||||||
option (google.api.http).get = "/colinear/colinear/auction_bids/{index}";
|
option (google.api.http).get = "/colinear-core/colinear-core/auction_bids/{index}";
|
||||||
}
|
}
|
||||||
|
|
||||||
// this line is used by starport scaffolding # 2
|
// this line is used by starport scaffolding # 2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||||
// source: colinear/auction.proto
|
// source: colinear-core/auction.proto
|
||||||
|
|
||||||
package types
|
package types
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ func (m *Auction) Reset() { *m = Auction{} }
|
||||||
func (m *Auction) String() string { return proto.CompactTextString(m) }
|
func (m *Auction) String() string { return proto.CompactTextString(m) }
|
||||||
func (*Auction) ProtoMessage() {}
|
func (*Auction) ProtoMessage() {}
|
||||||
func (*Auction) Descriptor() ([]byte, []int) {
|
func (*Auction) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_631f6f59914101d9, []int{0}
|
return fileDescriptor_ae97a8b1e46847c8, []int{0}
|
||||||
}
|
}
|
||||||
func (m *Auction) XXX_Unmarshal(b []byte) error {
|
func (m *Auction) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -147,32 +147,32 @@ func (m *Auction) GetRemaining() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterType((*Auction)(nil), "colinear.colinear.Auction")
|
proto.RegisterType((*Auction)(nil), "colinear.colinearcore.Auction")
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("colinear/auction.proto", fileDescriptor_631f6f59914101d9) }
|
func init() { proto.RegisterFile("colinear-core/auction.proto", fileDescriptor_ae97a8b1e46847c8) }
|
||||||
|
|
||||||
var fileDescriptor_631f6f59914101d9 = []byte{
|
var fileDescriptor_ae97a8b1e46847c8 = []byte{
|
||||||
// 298 bytes of a gzipped FileDescriptorProto
|
// 299 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xbf, 0x4e, 0xc3, 0x30,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xbf, 0x4e, 0xc3, 0x30,
|
||||||
0x10, 0xc6, 0xeb, 0x92, 0xfe, 0xbb, 0x6e, 0x56, 0x91, 0x4e, 0x15, 0xb2, 0x22, 0xa6, 0x2e, 0xa4,
|
0x10, 0xc6, 0xeb, 0x92, 0xfe, 0xbb, 0x6e, 0x16, 0x08, 0xab, 0x20, 0x2b, 0x62, 0xea, 0x42, 0x2a,
|
||||||
0x12, 0x2c, 0xac, 0x54, 0xe2, 0x05, 0xca, 0xc6, 0xe6, 0xc6, 0x27, 0x64, 0xa9, 0xb1, 0xab, 0xd8,
|
0xc1, 0xc2, 0x4a, 0x25, 0x5e, 0x20, 0x6c, 0x6c, 0x4e, 0x7c, 0x42, 0x96, 0x12, 0x3b, 0x72, 0x8c,
|
||||||
0x88, 0xf2, 0x16, 0xbc, 0x12, 0x1b, 0x63, 0x47, 0x46, 0xd4, 0xbe, 0x08, 0xca, 0x59, 0x25, 0x19,
|
0x28, 0x6f, 0xc1, 0x2b, 0xb1, 0x31, 0x76, 0x64, 0x44, 0xc9, 0x8b, 0x20, 0xdb, 0x0a, 0xb4, 0x12,
|
||||||
0xd8, 0xee, 0xf7, 0xdd, 0x7d, 0xb9, 0x2f, 0x3e, 0xc0, 0xd2, 0x87, 0xca, 0x87, 0x48, 0x21, 0x2e,
|
0x9b, 0x7f, 0xdf, 0x7d, 0x77, 0xf7, 0x59, 0x07, 0x17, 0xa5, 0xa9, 0x94, 0x46, 0x61, 0xaf, 0x4b,
|
||||||
0xf5, 0x6b, 0x19, 0xad, 0x77, 0xc5, 0xae, 0xf6, 0xd1, 0xcb, 0xcb, 0xb6, 0x53, 0xb4, 0xe5, 0x7c,
|
0x63, 0x71, 0x23, 0x5e, 0x4a, 0xa7, 0x8c, 0xce, 0x1a, 0x6b, 0x9c, 0xa1, 0x67, 0x43, 0x31, 0x1b,
|
||||||
0xd6, 0x31, 0x6c, 0xac, 0x49, 0xc3, 0xd7, 0x9f, 0x7d, 0x18, 0x3d, 0x24, 0xbb, 0x9c, 0xc1, 0xc0,
|
0x1e, 0xde, 0xb4, 0x3a, 0x3f, 0xee, 0x29, 0x94, 0x8c, 0xfe, 0xab, 0x8f, 0x31, 0xcc, 0xee, 0xe3,
|
||||||
0x3a, 0x43, 0x7b, 0x14, 0xb9, 0x58, 0x4c, 0xd6, 0x09, 0xa4, 0x84, 0xcc, 0xe9, 0x8a, 0xb0, 0xcf,
|
0x04, 0x7a, 0x0a, 0x13, 0xa5, 0x25, 0xee, 0x18, 0x49, 0xc9, 0x7a, 0x91, 0x47, 0xa0, 0x14, 0x12,
|
||||||
0x22, 0xd7, 0x32, 0x87, 0xa9, 0xa1, 0x50, 0xd6, 0x76, 0xd7, 0x18, 0xf1, 0x82, 0x5b, 0x5d, 0x49,
|
0x2d, 0x6a, 0x64, 0xe3, 0x20, 0x86, 0x37, 0x4d, 0x61, 0x29, 0xb1, 0x2d, 0xad, 0x6a, 0x7c, 0x23,
|
||||||
0x16, 0x90, 0x6d, 0x28, 0x44, 0xcc, 0x72, 0xb1, 0x98, 0xde, 0xce, 0x8b, 0x7f, 0x33, 0x15, 0x2b,
|
0x3b, 0x09, 0xa5, 0x43, 0x89, 0x66, 0x90, 0x14, 0xd8, 0x3a, 0x96, 0xa4, 0x64, 0xbd, 0xbc, 0x59,
|
||||||
0x6b, 0xd6, 0x3c, 0x27, 0xe7, 0x30, 0x36, 0xa4, 0xcd, 0xd6, 0x3a, 0xc2, 0x41, 0x2e, 0x16, 0xd9,
|
0x65, 0xff, 0xc6, 0xca, 0xb6, 0x4a, 0xe6, 0xc1, 0x47, 0x57, 0x30, 0x97, 0x28, 0xa4, 0xaf, 0xb1,
|
||||||
0xfa, 0x8f, 0x25, 0xc2, 0xa8, 0x24, 0xbb, 0xb5, 0xee, 0x05, 0x87, 0xbc, 0xe9, 0x8c, 0x4d, 0x62,
|
0x49, 0x4a, 0xd6, 0x49, 0xfe, 0xcb, 0x94, 0xc1, 0xac, 0x44, 0x55, 0x29, 0xfd, 0xcc, 0xa6, 0x61,
|
||||||
0x43, 0xce, 0x57, 0x38, 0x4a, 0x89, 0x19, 0x1a, 0xd5, 0xbf, 0x39, 0xaa, 0x71, 0x9c, 0x54, 0x06,
|
0xd3, 0x80, 0x3e, 0xb1, 0x44, 0x6d, 0x6a, 0x36, 0x8b, 0x89, 0x03, 0x78, 0xd5, 0xbc, 0x6a, 0xb4,
|
||||||
0xa9, 0x00, 0xb6, 0xa4, 0x03, 0x3d, 0x45, 0x5d, 0x47, 0x9c, 0xf0, 0x8e, 0x8e, 0xd2, 0x24, 0x60,
|
0x6c, 0x1e, 0xd5, 0x00, 0x94, 0x03, 0x54, 0x28, 0x5a, 0x7c, 0x74, 0xc2, 0x3a, 0xb6, 0x08, 0x3b,
|
||||||
0x7a, 0x74, 0x06, 0x21, 0x25, 0x38, 0xb3, 0xbc, 0x82, 0x49, 0x4d, 0x95, 0xb6, 0xae, 0xc9, 0x30,
|
0x0e, 0x14, 0x9f, 0x20, 0xd0, 0x83, 0x96, 0x0c, 0x62, 0x82, 0x81, 0xe9, 0x25, 0x2c, 0x2c, 0xd6,
|
||||||
0xe5, 0xaf, 0xb6, 0xc2, 0xea, 0xfe, 0xeb, 0xa8, 0xc4, 0xe1, 0xa8, 0xc4, 0xcf, 0x51, 0x89, 0x8f,
|
0x42, 0x69, 0x9f, 0x61, 0x19, 0xa6, 0xfe, 0x09, 0xdb, 0xbb, 0xcf, 0x8e, 0x93, 0x7d, 0xc7, 0xc9,
|
||||||
0x93, 0xea, 0x1d, 0x4e, 0xaa, 0xf7, 0x7d, 0x52, 0xbd, 0x67, 0x95, 0xfe, 0xf5, 0x86, 0x1f, 0x7d,
|
0x77, 0xc7, 0xc9, 0x7b, 0xcf, 0x47, 0xfb, 0x9e, 0x8f, 0xbe, 0x7a, 0x3e, 0x7a, 0xe2, 0xc3, 0x6f,
|
||||||
0xbf, 0xec, 0x5c, 0x20, 0xbe, 0xef, 0x28, 0x6c, 0x86, 0x7c, 0x84, 0xbb, 0xdf, 0x00, 0x00, 0x00,
|
0x37, 0xbb, 0xcd, 0xf1, 0x05, 0xdc, 0x5b, 0x83, 0x6d, 0x31, 0x0d, 0x47, 0xb8, 0xfd, 0x09, 0x00,
|
||||||
0xff, 0xff, 0x99, 0xa2, 0x60, 0x3e, 0xcd, 0x01, 0x00, 0x00,
|
0x00, 0xff, 0xff, 0x62, 0x0c, 0x0e, 0xed, 0xd3, 0x01, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Auction) Marshal() (dAtA []byte, err error) {
|
func (m *Auction) Marshal() (dAtA []byte, err error) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||||
// source: colinear/bid.proto
|
// source: colinear-core/bid.proto
|
||||||
|
|
||||||
package types
|
package types
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ func (m *Bid) Reset() { *m = Bid{} }
|
||||||
func (m *Bid) String() string { return proto.CompactTextString(m) }
|
func (m *Bid) String() string { return proto.CompactTextString(m) }
|
||||||
func (*Bid) ProtoMessage() {}
|
func (*Bid) ProtoMessage() {}
|
||||||
func (*Bid) Descriptor() ([]byte, []int) {
|
func (*Bid) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_74e391fc4965aac8, []int{0}
|
return fileDescriptor_26dbba15cad2395c, []int{0}
|
||||||
}
|
}
|
||||||
func (m *Bid) XXX_Unmarshal(b []byte) error {
|
func (m *Bid) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -75,22 +75,23 @@ func (m *Bid) GetAmount() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterType((*Bid)(nil), "colinear.colinear.Bid")
|
proto.RegisterType((*Bid)(nil), "colinear.colinearcore.Bid")
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("colinear/bid.proto", fileDescriptor_74e391fc4965aac8) }
|
func init() { proto.RegisterFile("colinear-core/bid.proto", fileDescriptor_26dbba15cad2395c) }
|
||||||
|
|
||||||
var fileDescriptor_74e391fc4965aac8 = []byte{
|
var fileDescriptor_26dbba15cad2395c = []byte{
|
||||||
// 142 bytes of a gzipped FileDescriptorProto
|
// 145 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0xce, 0x2f, 0xce,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xce, 0xcf, 0xc9,
|
||||||
0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0x4f, 0xca, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9,
|
0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0xca, 0x4c, 0xd1, 0x2b, 0x28,
|
||||||
0x17, 0x12, 0x45, 0x88, 0xea, 0x21, 0x98, 0x4a, 0xc6, 0x5c, 0xcc, 0x4e, 0x99, 0x29, 0x42, 0x22,
|
0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0x49, 0xe8, 0xc1, 0x18, 0x20, 0x05, 0x4a, 0xc6, 0x5c, 0xcc,
|
||||||
0x5c, 0xac, 0xf9, 0xe5, 0x79, 0xa9, 0x45, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x10, 0x8e,
|
0x4e, 0x99, 0x29, 0x42, 0x22, 0x5c, 0xac, 0xf9, 0xe5, 0x79, 0xa9, 0x45, 0x12, 0x8c, 0x0a, 0x8c,
|
||||||
0x90, 0x18, 0x17, 0x5b, 0x62, 0x6e, 0x7e, 0x69, 0x5e, 0x89, 0x04, 0x13, 0x58, 0x18, 0xca, 0x73,
|
0x1a, 0x9c, 0x41, 0x10, 0x8e, 0x90, 0x18, 0x17, 0x5b, 0x62, 0x6e, 0x7e, 0x69, 0x5e, 0x89, 0x04,
|
||||||
0xb2, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c,
|
0x13, 0x58, 0x18, 0xca, 0x73, 0xb2, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07,
|
||||||
0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x39, 0x88, 0xd1, 0xba,
|
0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86,
|
||||||
0x60, 0xcb, 0x2b, 0xf4, 0x91, 0x5c, 0x52, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0x8c,
|
0x28, 0x39, 0x98, 0xe1, 0xfa, 0x15, 0xfa, 0xa8, 0x2e, 0x29, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62,
|
||||||
0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x20, 0x17, 0xe0, 0x92, 0xa4, 0x00, 0x00, 0x00,
|
0x03, 0x3b, 0xc6, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xa2, 0x9c, 0x74, 0x04, 0xa7, 0x00, 0x00,
|
||||||
|
0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Bid) Marshal() (dAtA []byte, err error) {
|
func (m *Bid) Marshal() (dAtA []byte, err error) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||||
// source: colinear/genesis.proto
|
// source: colinear-core/genesis.proto
|
||||||
|
|
||||||
package types
|
package types
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} }
|
||||||
func (m *GenesisState) String() string { return proto.CompactTextString(m) }
|
func (m *GenesisState) String() string { return proto.CompactTextString(m) }
|
||||||
func (*GenesisState) ProtoMessage() {}
|
func (*GenesisState) ProtoMessage() {}
|
||||||
func (*GenesisState) Descriptor() ([]byte, []int) {
|
func (*GenesisState) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_78c0d8c25fe3d9a9, []int{0}
|
return fileDescriptor_630a43dd473b505c, []int{0}
|
||||||
}
|
}
|
||||||
func (m *GenesisState) XXX_Unmarshal(b []byte) error {
|
func (m *GenesisState) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -85,29 +85,29 @@ func (m *GenesisState) GetAuctionList() []Auction {
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterType((*GenesisState)(nil), "colinear.colinear.GenesisState")
|
proto.RegisterType((*GenesisState)(nil), "colinear.colinearcore.GenesisState")
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("colinear/genesis.proto", fileDescriptor_78c0d8c25fe3d9a9) }
|
func init() { proto.RegisterFile("colinear-core/genesis.proto", fileDescriptor_630a43dd473b505c) }
|
||||||
|
|
||||||
var fileDescriptor_78c0d8c25fe3d9a9 = []byte{
|
var fileDescriptor_630a43dd473b505c = []byte{
|
||||||
// 247 bytes of a gzipped FileDescriptorProto
|
// 250 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0xce, 0x2f, 0xce,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xce, 0xcf, 0xc9,
|
||||||
0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b,
|
0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce,
|
||||||
0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x45, 0xc8, 0xe8, 0x21, 0x98, 0x52, 0x22, 0xe9, 0xf9, 0xe9,
|
0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0x49, 0xea, 0xc1, 0x18, 0x20, 0x45,
|
||||||
0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x94, 0x38, 0x92, 0x31, 0x05, 0x89, 0x45, 0x89,
|
0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x94, 0x14, 0xaa,
|
||||||
0xb9, 0x50, 0x53, 0xa4, 0x64, 0x91, 0x24, 0xf2, 0x52, 0x2b, 0x4a, 0xe2, 0x13, 0x4b, 0x93, 0x4b,
|
0x49, 0x05, 0x89, 0x45, 0x89, 0xb9, 0x50, 0x83, 0xa4, 0x14, 0x50, 0xe5, 0xf2, 0x52, 0x2b, 0x4a,
|
||||||
0x32, 0xf3, 0xf3, 0xa0, 0xd2, 0xc8, 0xd6, 0xa3, 0xc8, 0x28, 0xdd, 0x64, 0xe4, 0xe2, 0x71, 0x87,
|
0xe2, 0x13, 0x4b, 0x93, 0x4b, 0x32, 0xf3, 0xf3, 0xa0, 0x2a, 0xd0, 0xdc, 0x81, 0x22, 0xa9, 0x74,
|
||||||
0x38, 0x28, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x9a, 0x8b, 0x0d, 0x62, 0xb2, 0x04, 0xa3, 0x02,
|
0x93, 0x91, 0x8b, 0xc7, 0x1d, 0xe2, 0xb2, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x6b, 0x2e, 0x36,
|
||||||
0xa3, 0x06, 0xb7, 0x91, 0xac, 0x1e, 0x56, 0x07, 0xea, 0x05, 0x80, 0x15, 0x39, 0xb1, 0x9c, 0xb8,
|
0x88, 0xf9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0xb2, 0x7a, 0x58, 0x5d, 0xaa, 0x17, 0x00,
|
||||||
0x27, 0xcf, 0x10, 0x04, 0xd5, 0x22, 0xe4, 0xc2, 0xc5, 0x0d, 0xb2, 0xdd, 0x11, 0x62, 0x85, 0x04,
|
0x56, 0xe4, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x54, 0x8b, 0x90, 0x0b, 0x17, 0x37, 0xc8,
|
||||||
0x13, 0xd8, 0x04, 0x25, 0x1c, 0x26, 0xf8, 0x21, 0x54, 0x06, 0x21, 0x6b, 0x13, 0x72, 0xe3, 0xe2,
|
0x01, 0x8e, 0x10, 0x2b, 0x24, 0x98, 0xc0, 0x26, 0x28, 0xe1, 0x30, 0xc1, 0x0f, 0xa1, 0x32, 0x08,
|
||||||
0x86, 0x3a, 0xd2, 0x27, 0xb3, 0xb8, 0x44, 0x82, 0x59, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x0e, 0x87,
|
0x59, 0x9b, 0x90, 0x1b, 0x17, 0x37, 0xd4, 0x91, 0x3e, 0x99, 0xc5, 0x25, 0x12, 0xcc, 0x0a, 0xcc,
|
||||||
0x29, 0x50, 0x4d, 0x50, 0x87, 0x20, 0x6b, 0x74, 0xb2, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23,
|
0x1a, 0xdc, 0x46, 0x72, 0x38, 0x4c, 0x81, 0x6a, 0x82, 0x3a, 0x04, 0x59, 0xa3, 0x93, 0xc5, 0x89,
|
||||||
0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6,
|
0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3,
|
||||||
0x63, 0x39, 0x86, 0x28, 0x39, 0x88, 0x01, 0xba, 0xe0, 0x00, 0xa9, 0xd0, 0x47, 0x0a, 0x9d, 0x92,
|
0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xc9, 0xc1, 0x8c, 0xd0, 0xaf, 0xd0, 0x47,
|
||||||
0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0xe0, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x3c,
|
0x0d, 0x9d, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0xe0, 0x18, 0x03, 0x02, 0x00, 0x00,
|
||||||
0x94, 0xf7, 0x48, 0xb7, 0x01, 0x00, 0x00,
|
0xff, 0xff, 0xd8, 0x73, 0x01, 0x31, 0xc3, 0x01, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *GenesisState) Marshal() (dAtA []byte, err error) {
|
func (m *GenesisState) Marshal() (dAtA []byte, err error) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||||
// source: colinear/next_auction.proto
|
// source: colinear-core/next_auction.proto
|
||||||
|
|
||||||
package types
|
package types
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ func (m *NextAuction) Reset() { *m = NextAuction{} }
|
||||||
func (m *NextAuction) String() string { return proto.CompactTextString(m) }
|
func (m *NextAuction) String() string { return proto.CompactTextString(m) }
|
||||||
func (*NextAuction) ProtoMessage() {}
|
func (*NextAuction) ProtoMessage() {}
|
||||||
func (*NextAuction) Descriptor() ([]byte, []int) {
|
func (*NextAuction) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_403ab8ae798c785d, []int{0}
|
return fileDescriptor_bcf6c95c676bf51f, []int{0}
|
||||||
}
|
}
|
||||||
func (m *NextAuction) XXX_Unmarshal(b []byte) error {
|
func (m *NextAuction) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -67,22 +67,22 @@ func (m *NextAuction) GetAuctionId() uint64 {
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterType((*NextAuction)(nil), "colinear.colinear.NextAuction")
|
proto.RegisterType((*NextAuction)(nil), "colinear.colinearcore.NextAuction")
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("colinear/next_auction.proto", fileDescriptor_403ab8ae798c785d) }
|
func init() { proto.RegisterFile("colinear-core/next_auction.proto", fileDescriptor_bcf6c95c676bf51f) }
|
||||||
|
|
||||||
var fileDescriptor_403ab8ae798c785d = []byte{
|
var fileDescriptor_bcf6c95c676bf51f = []byte{
|
||||||
// 139 bytes of a gzipped FileDescriptorProto
|
// 142 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xce, 0x2f, 0xce,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0xcf, 0xc9,
|
||||||
0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0xcf, 0x4b, 0xad, 0x28, 0x89, 0x4f, 0x2c, 0x4d, 0x2e,
|
0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0xcf, 0x4b, 0xad, 0x28, 0x89, 0x4f,
|
||||||
0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x45, 0x48, 0xeb, 0x21, 0x98,
|
0x2c, 0x4d, 0x2e, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xa9,
|
||||||
0x4a, 0xda, 0x5c, 0xdc, 0x7e, 0xa9, 0x15, 0x25, 0x8e, 0x10, 0xb5, 0x42, 0x32, 0x5c, 0x9c, 0x50,
|
0xd0, 0x83, 0x31, 0x40, 0x2a, 0x95, 0xb4, 0xb9, 0xb8, 0xfd, 0x52, 0x2b, 0x4a, 0x1c, 0x21, 0x6a,
|
||||||
0x6d, 0x9e, 0x29, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x08, 0x01, 0x27, 0x8b, 0x13, 0x8f,
|
0x85, 0x64, 0xb8, 0x38, 0xa1, 0xda, 0x3c, 0x53, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x82, 0x10,
|
||||||
0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b,
|
0x02, 0x4e, 0x16, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3,
|
||||||
0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x92, 0x83, 0x18, 0xa9, 0x0b, 0xb6, 0xbd, 0x42,
|
0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x25, 0x07, 0x33,
|
||||||
0x1f, 0xc9, 0x29, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x47, 0x18, 0x03, 0x02, 0x00,
|
0x54, 0xbf, 0x42, 0x1f, 0xd5, 0x29, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x47, 0x18,
|
||||||
0x00, 0xff, 0xff, 0xb1, 0x7c, 0xed, 0xa0, 0xa5, 0x00, 0x00, 0x00,
|
0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd0, 0x7e, 0xbb, 0x0a, 0xa8, 0x00, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *NextAuction) Marshal() (dAtA []byte, err error) {
|
func (m *NextAuction) Marshal() (dAtA []byte, err error) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||||
// source: colinear/params.proto
|
// source: colinear-core/params.proto
|
||||||
|
|
||||||
package types
|
package types
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ type Params struct {
|
||||||
func (m *Params) Reset() { *m = Params{} }
|
func (m *Params) Reset() { *m = Params{} }
|
||||||
func (*Params) ProtoMessage() {}
|
func (*Params) ProtoMessage() {}
|
||||||
func (*Params) Descriptor() ([]byte, []int) {
|
func (*Params) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_dec10d5375a626c5, []int{0}
|
return fileDescriptor_30a417e0196848c0, []int{0}
|
||||||
}
|
}
|
||||||
func (m *Params) XXX_Unmarshal(b []byte) error {
|
func (m *Params) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -60,22 +60,22 @@ func (m *Params) XXX_DiscardUnknown() {
|
||||||
var xxx_messageInfo_Params proto.InternalMessageInfo
|
var xxx_messageInfo_Params proto.InternalMessageInfo
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterType((*Params)(nil), "colinear.colinear.Params")
|
proto.RegisterType((*Params)(nil), "colinear.colinearcore.Params")
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("colinear/params.proto", fileDescriptor_dec10d5375a626c5) }
|
func init() { proto.RegisterFile("colinear-core/params.proto", fileDescriptor_30a417e0196848c0) }
|
||||||
|
|
||||||
var fileDescriptor_dec10d5375a626c5 = []byte{
|
var fileDescriptor_30a417e0196848c0 = []byte{
|
||||||
// 131 bytes of a gzipped FileDescriptorProto
|
// 134 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xce, 0x2f, 0xce,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0xce, 0xcf, 0xc9,
|
||||||
0xcd, 0x2f, 0x2e, 0x49, 0x2d, 0x2e, 0xd1, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28,
|
0xcc, 0x4b, 0x4d, 0x2c, 0xd2, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d,
|
||||||
0xca, 0x2f, 0xc9, 0x17, 0x12, 0x45, 0x48, 0xe8, 0x21, 0x98, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9,
|
0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xc9, 0xe9, 0xc1, 0x18, 0x20, 0x35, 0x52,
|
||||||
0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x12, 0x1f, 0x17, 0x5b, 0x00, 0x58, 0xb3, 0x15, 0xcb,
|
0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0x12, 0x1f, 0x17, 0x5b,
|
||||||
0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x16, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0,
|
0x00, 0x58, 0xb3, 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x16, 0x27, 0x1e, 0xc9, 0x31, 0x5e,
|
||||||
0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10,
|
0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31,
|
||||||
0x25, 0x07, 0x31, 0x4b, 0x17, 0x6c, 0x61, 0x85, 0x3e, 0x92, 0xed, 0x25, 0x95, 0x05, 0xa9, 0xc5,
|
0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x25, 0x07, 0x33, 0x4d, 0xbf, 0x42, 0x1f, 0xd5, 0xf6, 0x92, 0xca,
|
||||||
0x49, 0x6c, 0x60, 0x03, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x4e, 0x2a, 0x32, 0x98,
|
0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x81, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe0, 0xd9,
|
||||||
0x00, 0x00, 0x00,
|
0x41, 0xb0, 0x9b, 0x00, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Params) Marshal() (dAtA []byte, err error) {
|
func (m *Params) Marshal() (dAtA []byte, err error) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||||
// source: colinear/query.proto
|
// source: colinear-core/query.proto
|
||||||
|
|
||||||
package types
|
package types
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} }
|
||||||
func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) }
|
func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryParamsRequest) ProtoMessage() {}
|
func (*QueryParamsRequest) ProtoMessage() {}
|
||||||
func (*QueryParamsRequest) Descriptor() ([]byte, []int) {
|
func (*QueryParamsRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{0}
|
return fileDescriptor_da24993497be29f8, []int{0}
|
||||||
}
|
}
|
||||||
func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error {
|
func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -77,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} }
|
||||||
func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) }
|
func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryParamsResponse) ProtoMessage() {}
|
func (*QueryParamsResponse) ProtoMessage() {}
|
||||||
func (*QueryParamsResponse) Descriptor() ([]byte, []int) {
|
func (*QueryParamsResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{1}
|
return fileDescriptor_da24993497be29f8, []int{1}
|
||||||
}
|
}
|
||||||
func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error {
|
func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -120,7 +120,7 @@ func (m *QueryGetNextAuctionRequest) Reset() { *m = QueryGetNextAuctionR
|
||||||
func (m *QueryGetNextAuctionRequest) String() string { return proto.CompactTextString(m) }
|
func (m *QueryGetNextAuctionRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryGetNextAuctionRequest) ProtoMessage() {}
|
func (*QueryGetNextAuctionRequest) ProtoMessage() {}
|
||||||
func (*QueryGetNextAuctionRequest) Descriptor() ([]byte, []int) {
|
func (*QueryGetNextAuctionRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{2}
|
return fileDescriptor_da24993497be29f8, []int{2}
|
||||||
}
|
}
|
||||||
func (m *QueryGetNextAuctionRequest) XXX_Unmarshal(b []byte) error {
|
func (m *QueryGetNextAuctionRequest) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -157,7 +157,7 @@ func (m *QueryGetNextAuctionResponse) Reset() { *m = QueryGetNextAuction
|
||||||
func (m *QueryGetNextAuctionResponse) String() string { return proto.CompactTextString(m) }
|
func (m *QueryGetNextAuctionResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryGetNextAuctionResponse) ProtoMessage() {}
|
func (*QueryGetNextAuctionResponse) ProtoMessage() {}
|
||||||
func (*QueryGetNextAuctionResponse) Descriptor() ([]byte, []int) {
|
func (*QueryGetNextAuctionResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{3}
|
return fileDescriptor_da24993497be29f8, []int{3}
|
||||||
}
|
}
|
||||||
func (m *QueryGetNextAuctionResponse) XXX_Unmarshal(b []byte) error {
|
func (m *QueryGetNextAuctionResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -201,7 +201,7 @@ func (m *QueryGetAuctionRequest) Reset() { *m = QueryGetAuctionRequest{}
|
||||||
func (m *QueryGetAuctionRequest) String() string { return proto.CompactTextString(m) }
|
func (m *QueryGetAuctionRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryGetAuctionRequest) ProtoMessage() {}
|
func (*QueryGetAuctionRequest) ProtoMessage() {}
|
||||||
func (*QueryGetAuctionRequest) Descriptor() ([]byte, []int) {
|
func (*QueryGetAuctionRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{4}
|
return fileDescriptor_da24993497be29f8, []int{4}
|
||||||
}
|
}
|
||||||
func (m *QueryGetAuctionRequest) XXX_Unmarshal(b []byte) error {
|
func (m *QueryGetAuctionRequest) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -245,7 +245,7 @@ func (m *QueryGetAuctionResponse) Reset() { *m = QueryGetAuctionResponse
|
||||||
func (m *QueryGetAuctionResponse) String() string { return proto.CompactTextString(m) }
|
func (m *QueryGetAuctionResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryGetAuctionResponse) ProtoMessage() {}
|
func (*QueryGetAuctionResponse) ProtoMessage() {}
|
||||||
func (*QueryGetAuctionResponse) Descriptor() ([]byte, []int) {
|
func (*QueryGetAuctionResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{5}
|
return fileDescriptor_da24993497be29f8, []int{5}
|
||||||
}
|
}
|
||||||
func (m *QueryGetAuctionResponse) XXX_Unmarshal(b []byte) error {
|
func (m *QueryGetAuctionResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -289,7 +289,7 @@ func (m *QueryAllAuctionRequest) Reset() { *m = QueryAllAuctionRequest{}
|
||||||
func (m *QueryAllAuctionRequest) String() string { return proto.CompactTextString(m) }
|
func (m *QueryAllAuctionRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryAllAuctionRequest) ProtoMessage() {}
|
func (*QueryAllAuctionRequest) ProtoMessage() {}
|
||||||
func (*QueryAllAuctionRequest) Descriptor() ([]byte, []int) {
|
func (*QueryAllAuctionRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{6}
|
return fileDescriptor_da24993497be29f8, []int{6}
|
||||||
}
|
}
|
||||||
func (m *QueryAllAuctionRequest) XXX_Unmarshal(b []byte) error {
|
func (m *QueryAllAuctionRequest) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -334,7 +334,7 @@ func (m *QueryAllAuctionResponse) Reset() { *m = QueryAllAuctionResponse
|
||||||
func (m *QueryAllAuctionResponse) String() string { return proto.CompactTextString(m) }
|
func (m *QueryAllAuctionResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryAllAuctionResponse) ProtoMessage() {}
|
func (*QueryAllAuctionResponse) ProtoMessage() {}
|
||||||
func (*QueryAllAuctionResponse) Descriptor() ([]byte, []int) {
|
func (*QueryAllAuctionResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{7}
|
return fileDescriptor_da24993497be29f8, []int{7}
|
||||||
}
|
}
|
||||||
func (m *QueryAllAuctionResponse) XXX_Unmarshal(b []byte) error {
|
func (m *QueryAllAuctionResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -385,7 +385,7 @@ func (m *QueryAuctionBidsRequest) Reset() { *m = QueryAuctionBidsRequest
|
||||||
func (m *QueryAuctionBidsRequest) String() string { return proto.CompactTextString(m) }
|
func (m *QueryAuctionBidsRequest) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryAuctionBidsRequest) ProtoMessage() {}
|
func (*QueryAuctionBidsRequest) ProtoMessage() {}
|
||||||
func (*QueryAuctionBidsRequest) Descriptor() ([]byte, []int) {
|
func (*QueryAuctionBidsRequest) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{8}
|
return fileDescriptor_da24993497be29f8, []int{8}
|
||||||
}
|
}
|
||||||
func (m *QueryAuctionBidsRequest) XXX_Unmarshal(b []byte) error {
|
func (m *QueryAuctionBidsRequest) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -429,7 +429,7 @@ func (m *QueryAuctionBidsResponse) Reset() { *m = QueryAuctionBidsRespon
|
||||||
func (m *QueryAuctionBidsResponse) String() string { return proto.CompactTextString(m) }
|
func (m *QueryAuctionBidsResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*QueryAuctionBidsResponse) ProtoMessage() {}
|
func (*QueryAuctionBidsResponse) ProtoMessage() {}
|
||||||
func (*QueryAuctionBidsResponse) Descriptor() ([]byte, []int) {
|
func (*QueryAuctionBidsResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_540d26b2788a5d10, []int{9}
|
return fileDescriptor_da24993497be29f8, []int{9}
|
||||||
}
|
}
|
||||||
func (m *QueryAuctionBidsResponse) XXX_Unmarshal(b []byte) error {
|
func (m *QueryAuctionBidsResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -466,60 +466,61 @@ func (m *QueryAuctionBidsResponse) GetBids() []*Bid {
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterType((*QueryParamsRequest)(nil), "colinear.colinear.QueryParamsRequest")
|
proto.RegisterType((*QueryParamsRequest)(nil), "colinear.colinearcore.QueryParamsRequest")
|
||||||
proto.RegisterType((*QueryParamsResponse)(nil), "colinear.colinear.QueryParamsResponse")
|
proto.RegisterType((*QueryParamsResponse)(nil), "colinear.colinearcore.QueryParamsResponse")
|
||||||
proto.RegisterType((*QueryGetNextAuctionRequest)(nil), "colinear.colinear.QueryGetNextAuctionRequest")
|
proto.RegisterType((*QueryGetNextAuctionRequest)(nil), "colinear.colinearcore.QueryGetNextAuctionRequest")
|
||||||
proto.RegisterType((*QueryGetNextAuctionResponse)(nil), "colinear.colinear.QueryGetNextAuctionResponse")
|
proto.RegisterType((*QueryGetNextAuctionResponse)(nil), "colinear.colinearcore.QueryGetNextAuctionResponse")
|
||||||
proto.RegisterType((*QueryGetAuctionRequest)(nil), "colinear.colinear.QueryGetAuctionRequest")
|
proto.RegisterType((*QueryGetAuctionRequest)(nil), "colinear.colinearcore.QueryGetAuctionRequest")
|
||||||
proto.RegisterType((*QueryGetAuctionResponse)(nil), "colinear.colinear.QueryGetAuctionResponse")
|
proto.RegisterType((*QueryGetAuctionResponse)(nil), "colinear.colinearcore.QueryGetAuctionResponse")
|
||||||
proto.RegisterType((*QueryAllAuctionRequest)(nil), "colinear.colinear.QueryAllAuctionRequest")
|
proto.RegisterType((*QueryAllAuctionRequest)(nil), "colinear.colinearcore.QueryAllAuctionRequest")
|
||||||
proto.RegisterType((*QueryAllAuctionResponse)(nil), "colinear.colinear.QueryAllAuctionResponse")
|
proto.RegisterType((*QueryAllAuctionResponse)(nil), "colinear.colinearcore.QueryAllAuctionResponse")
|
||||||
proto.RegisterType((*QueryAuctionBidsRequest)(nil), "colinear.colinear.QueryAuctionBidsRequest")
|
proto.RegisterType((*QueryAuctionBidsRequest)(nil), "colinear.colinearcore.QueryAuctionBidsRequest")
|
||||||
proto.RegisterType((*QueryAuctionBidsResponse)(nil), "colinear.colinear.QueryAuctionBidsResponse")
|
proto.RegisterType((*QueryAuctionBidsResponse)(nil), "colinear.colinearcore.QueryAuctionBidsResponse")
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("colinear/query.proto", fileDescriptor_540d26b2788a5d10) }
|
func init() { proto.RegisterFile("colinear-core/query.proto", fileDescriptor_da24993497be29f8) }
|
||||||
|
|
||||||
var fileDescriptor_540d26b2788a5d10 = []byte{
|
var fileDescriptor_da24993497be29f8 = []byte{
|
||||||
// 605 bytes of a gzipped FileDescriptorProto
|
// 614 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xc1, 0x6b, 0x13, 0x41,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xbf, 0x6f, 0xd3, 0x40,
|
||||||
0x14, 0xc6, 0x33, 0xb5, 0x4d, 0x71, 0x7a, 0x1b, 0x63, 0x1b, 0xd6, 0x76, 0x5b, 0x17, 0x49, 0x6c,
|
0x14, 0xc7, 0x73, 0xa5, 0x4d, 0xc5, 0x75, 0x3b, 0x02, 0x2d, 0x6e, 0x31, 0x95, 0x81, 0x42, 0x7f,
|
||||||
0x69, 0x67, 0x48, 0xf4, 0x20, 0x08, 0x42, 0x72, 0xb0, 0xd0, 0x83, 0xd4, 0xbd, 0xe9, 0xa5, 0x4e,
|
0xdd, 0x29, 0x29, 0x03, 0x08, 0x09, 0x29, 0x19, 0xa8, 0xd4, 0x01, 0x15, 0x6f, 0xb0, 0x94, 0x4b,
|
||||||
0x9a, 0x61, 0x59, 0x48, 0x77, 0xb6, 0x99, 0x89, 0xa4, 0x88, 0x17, 0x2f, 0x5e, 0x0b, 0x7a, 0xf1,
|
0x72, 0xb2, 0x2c, 0xb9, 0x3e, 0x37, 0x76, 0x50, 0x2a, 0xc4, 0xc2, 0xcc, 0x80, 0xc4, 0xc4, 0xc2,
|
||||||
0x5a, 0xfc, 0x63, 0x7a, 0x2c, 0x78, 0xf1, 0x24, 0x92, 0xf8, 0x87, 0x48, 0x66, 0x66, 0xc9, 0x6c,
|
0xc0, 0x82, 0xfa, 0x9f, 0x74, 0xac, 0xc4, 0xc2, 0x84, 0x50, 0xc2, 0x1f, 0x82, 0x72, 0xf7, 0x2c,
|
||||||
0x37, 0xbb, 0x49, 0x6f, 0x9b, 0x79, 0xdf, 0xf7, 0xbe, 0xdf, 0x6c, 0xde, 0x4b, 0xe0, 0xfa, 0x29,
|
0x7c, 0x71, 0xe2, 0xba, 0x9b, 0xe3, 0xf7, 0xfd, 0xbe, 0xef, 0xe7, 0x2e, 0xef, 0x25, 0xf8, 0x76,
|
||||||
0x17, 0x67, 0x5c, 0x48, 0x26, 0x24, 0x39, 0x1f, 0xb0, 0xfe, 0x05, 0x8e, 0xfb, 0x5c, 0x72, 0xf4,
|
0x47, 0x06, 0x7e, 0x28, 0x78, 0x6f, 0xb7, 0x23, 0x7b, 0x82, 0x9d, 0xf4, 0x45, 0xef, 0x94, 0x46,
|
||||||
0x70, 0x7a, 0x8e, 0xa7, 0x8f, 0x4e, 0x25, 0xe0, 0x01, 0x57, 0x0a, 0x32, 0x79, 0xd2, 0x62, 0x67,
|
0x3d, 0x99, 0x48, 0x72, 0x33, 0x2d, 0xd1, 0xf4, 0x61, 0x2c, 0xb1, 0x6a, 0x9e, 0xf4, 0xa4, 0x52,
|
||||||
0x33, 0xe0, 0x3c, 0xe8, 0x31, 0x42, 0xe3, 0x90, 0xd0, 0x28, 0xe2, 0x92, 0xca, 0x90, 0x47, 0xc2,
|
0xb0, 0xf1, 0x93, 0x16, 0x5b, 0x6b, 0x9e, 0x94, 0x5e, 0x20, 0x18, 0x8f, 0x7c, 0xc6, 0xc3, 0x50,
|
||||||
0x54, 0xf7, 0xb4, 0x9f, 0x74, 0xa8, 0x60, 0x3a, 0x83, 0x7c, 0x6c, 0x74, 0x98, 0xa4, 0x0d, 0x12,
|
0x26, 0x3c, 0xf1, 0x65, 0x18, 0x43, 0x75, 0xab, 0x23, 0xe3, 0x63, 0x19, 0xb3, 0x36, 0x8f, 0x21,
|
||||||
0xd3, 0x20, 0x8c, 0x94, 0xd8, 0x68, 0x37, 0x2c, 0x9c, 0x98, 0xf6, 0xe9, 0x59, 0xd2, 0x64, 0xcb,
|
0x83, 0xbd, 0xab, 0xb7, 0x45, 0xc2, 0xeb, 0x2c, 0xe2, 0x9e, 0x1f, 0x2a, 0x31, 0x68, 0x2d, 0x93,
|
||||||
0x2a, 0x44, 0x6c, 0x28, 0x4f, 0xe8, 0xe0, 0xd4, 0xf2, 0x55, 0xad, 0x72, 0xba, 0x52, 0xb1, 0x2a,
|
0x28, 0xe2, 0x3d, 0x7e, 0x9c, 0xf6, 0x59, 0x37, 0x6b, 0xa1, 0x18, 0x24, 0x47, 0xbc, 0xdf, 0xc9,
|
||||||
0x9d, 0xb0, 0xab, 0x4f, 0xbd, 0x0a, 0x44, 0x6f, 0x27, 0x24, 0xc7, 0x2a, 0xc3, 0x67, 0xe7, 0x03,
|
0xb8, 0x57, 0x4d, 0x85, 0x59, 0x5c, 0x36, 0x8b, 0x6d, 0xbf, 0xab, 0x0b, 0x4e, 0x0d, 0x93, 0x57,
|
||||||
0x26, 0xa4, 0xe7, 0xc3, 0x07, 0xa9, 0x53, 0x11, 0xf3, 0x48, 0x30, 0xf4, 0x12, 0x96, 0x35, 0x4b,
|
0x63, 0xaa, 0x43, 0x15, 0xe6, 0x8a, 0x93, 0xbe, 0x88, 0x13, 0xc7, 0xc5, 0x37, 0x8c, 0xb7, 0x71,
|
||||||
0x15, 0xec, 0x80, 0xa7, 0x6b, 0xcd, 0x2d, 0x3c, 0xf3, 0xe5, 0x60, 0x6d, 0x6b, 0x2f, 0x5f, 0xff,
|
0x24, 0xc3, 0x58, 0x90, 0x67, 0xb8, 0xaa, 0xa1, 0x56, 0xd0, 0x3a, 0x7a, 0xb4, 0xd4, 0xb8, 0x43,
|
||||||
0xd9, 0x2e, 0xf9, 0xc6, 0xe2, 0x6d, 0x42, 0x47, 0xf5, 0x3c, 0x64, 0xf2, 0x0d, 0x1b, 0xca, 0x96,
|
0xa7, 0x5e, 0x14, 0xd5, 0xb6, 0xd6, 0xfc, 0xf9, 0xef, 0xbb, 0x15, 0x17, 0x2c, 0xce, 0x1a, 0xb6,
|
||||||
0x86, 0x4b, 0x12, 0x43, 0xf8, 0x68, 0x66, 0xd5, 0x24, 0x1f, 0xc1, 0x35, 0xeb, 0xd8, 0xc4, 0x7b,
|
0x54, 0xcf, 0x7d, 0x91, 0xbc, 0x14, 0x83, 0xa4, 0xa9, 0xf9, 0xd2, 0x44, 0x1f, 0xaf, 0x4e, 0xad,
|
||||||
0x39, 0xf1, 0x96, 0xd2, 0x30, 0xd8, 0x66, 0x0f, 0xc3, 0xf5, 0x24, 0x2a, 0x0d, 0x81, 0x2a, 0x70,
|
0x42, 0xf2, 0x01, 0x5e, 0xca, 0xbc, 0x86, 0x78, 0x67, 0x46, 0x7c, 0x46, 0x09, 0x0c, 0x59, 0xb3,
|
||||||
0x25, 0x8c, 0xba, 0x6c, 0xa8, 0xfa, 0xdf, 0xf7, 0xf5, 0x07, 0xef, 0x1d, 0xdc, 0xc8, 0xe8, 0x0d,
|
0x43, 0xf1, 0xad, 0x34, 0xca, 0x84, 0x20, 0x35, 0xbc, 0xe0, 0x87, 0x5d, 0x31, 0x50, 0xfd, 0xaf,
|
||||||
0xd6, 0x2b, 0xb8, 0x4a, 0x53, 0x48, 0x6e, 0x0e, 0x52, 0x1a, 0x27, 0x31, 0x79, 0x1f, 0x0c, 0x4a,
|
0xbb, 0xfa, 0x83, 0xf3, 0x1a, 0x2f, 0xe7, 0xf4, 0x80, 0xf5, 0x1c, 0x2f, 0x72, 0x03, 0xc9, 0x9e,
|
||||||
0xab, 0xd7, 0xbb, 0x85, 0xf2, 0x1a, 0xc2, 0xe9, 0x4c, 0x98, 0xe6, 0x35, 0xd3, 0x11, 0x4f, 0x06,
|
0x81, 0x64, 0xe2, 0xa4, 0x26, 0xe7, 0x2d, 0xa0, 0x34, 0x83, 0x60, 0x02, 0xe5, 0x05, 0xc6, 0xff,
|
||||||
0x08, 0xeb, 0x21, 0x35, 0x03, 0x84, 0x8f, 0x69, 0xc0, 0x8c, 0xd7, 0xb7, 0x9c, 0xde, 0x15, 0x30,
|
0xe7, 0x03, 0x9a, 0x6f, 0x50, 0x3d, 0x4c, 0x74, 0x3c, 0x4c, 0x54, 0x0f, 0x2c, 0x0c, 0x13, 0x3d,
|
||||||
0xf4, 0x76, 0xc4, 0x2c, 0xfa, 0x7b, 0x77, 0xa6, 0x47, 0x87, 0x29, 0xc6, 0x25, 0xc5, 0x58, 0x9f,
|
0xe4, 0x9e, 0x00, 0xaf, 0x9b, 0x71, 0x3a, 0xdf, 0x11, 0xd0, 0x67, 0x23, 0xa6, 0xd1, 0x5f, 0xbb,
|
||||||
0xcb, 0xa8, 0xc3, 0x53, 0x90, 0x24, 0x61, 0x34, 0x39, 0x61, 0x57, 0x14, 0x7f, 0x25, 0x47, 0xb0,
|
0x32, 0x3d, 0xd9, 0x37, 0x18, 0xe7, 0x14, 0xe3, 0xc3, 0x4b, 0x19, 0x75, 0xb8, 0x01, 0xc9, 0x52,
|
||||||
0x9a, 0x35, 0x98, 0x5b, 0x61, 0xb8, 0xdc, 0x09, 0xbb, 0xc2, 0x5c, 0xc9, 0xc9, 0xb9, 0x52, 0x3b,
|
0x46, 0xc8, 0xf1, 0xbb, 0x71, 0xf1, 0x57, 0x72, 0x80, 0x57, 0xf2, 0x06, 0x38, 0x15, 0xc5, 0xf3,
|
||||||
0xec, 0xfa, 0x4a, 0xd7, 0xbc, 0x2c, 0xc3, 0x15, 0xd5, 0x0c, 0x7d, 0x05, 0xb0, 0xac, 0x47, 0x17,
|
0x6d, 0xbf, 0x1b, 0xc3, 0x91, 0xac, 0x19, 0x47, 0x6a, 0xf9, 0x5d, 0x57, 0xe9, 0x1a, 0x67, 0x55,
|
||||||
0xed, 0xe6, 0xd8, 0xb2, 0xbb, 0xe2, 0xec, 0x2d, 0x22, 0xd5, 0x6c, 0x5e, 0xed, 0xcb, 0xaf, 0x7f,
|
0xbc, 0xa0, 0x9a, 0x91, 0x4f, 0x08, 0x57, 0xf5, 0xe8, 0x92, 0xcd, 0x19, 0xb6, 0xfc, 0xae, 0x58,
|
||||||
0xdf, 0x96, 0x76, 0x90, 0x4b, 0xb4, 0xf0, 0x40, 0x6d, 0x63, 0x66, 0xd5, 0xd1, 0x15, 0x48, 0xcd,
|
0x5b, 0x65, 0xa4, 0x9a, 0xcd, 0xd9, 0xfe, 0xf8, 0xf3, 0xef, 0x97, 0xb9, 0x07, 0xe4, 0x1e, 0x33,
|
||||||
0x3b, 0x6a, 0x14, 0x65, 0xcc, 0x5c, 0x28, 0xa7, 0x79, 0x17, 0x8b, 0xc1, 0xdb, 0x57, 0x78, 0x35,
|
0xf7, 0x71, 0xda, 0xe2, 0x93, 0x1f, 0xc8, 0x18, 0x7a, 0x52, 0x2f, 0x0a, 0x9a, 0xba, 0x55, 0x56,
|
||||||
0xf4, 0x24, 0x0f, 0xcf, 0xfe, 0xc1, 0x41, 0x3f, 0x00, 0x5c, 0x4d, 0x00, 0x0f, 0xe6, 0xa4, 0xdd,
|
0xe3, 0x2a, 0x16, 0x60, 0xac, 0x2b, 0xc6, 0x6d, 0xb2, 0x59, 0xc8, 0x98, 0xfd, 0x01, 0x22, 0xdf,
|
||||||
0x82, 0xc3, 0x8b, 0xca, 0x0d, 0x18, 0x51, 0x60, 0xbb, 0xa8, 0x9e, 0x07, 0x66, 0x98, 0xc8, 0x27,
|
0x10, 0x5e, 0x4c, 0x29, 0x77, 0x2f, 0x89, 0x9c, 0x20, 0xa4, 0x65, 0xe5, 0x40, 0xf7, 0x58, 0xd1,
|
||||||
0x35, 0x1f, 0x9f, 0xd1, 0x77, 0x00, 0xa1, 0x69, 0xd2, 0xea, 0xf5, 0x8a, 0xf1, 0x32, 0xcb, 0x57,
|
0x51, 0xb2, 0x53, 0x48, 0x07, 0x60, 0xec, 0xbd, 0x1a, 0x97, 0x0f, 0xe4, 0x2b, 0xc2, 0x18, 0x3a,
|
||||||
0x8c, 0x97, 0x5d, 0x24, 0xaf, 0xae, 0xf0, 0x1e, 0xa3, 0xed, 0x39, 0x78, 0xe8, 0x27, 0x80, 0x6b,
|
0x35, 0x83, 0xa0, 0x98, 0x31, 0xb7, 0x8b, 0xc5, 0x8c, 0xf9, 0xbd, 0x72, 0x76, 0x14, 0xe3, 0x06,
|
||||||
0xd6, 0xcc, 0xa2, 0xe2, 0xa0, 0xcc, 0x36, 0x38, 0x64, 0x61, 0xbd, 0x21, 0x7b, 0xae, 0xc8, 0x30,
|
0xb9, 0x5f, 0x86, 0x91, 0x9c, 0x21, 0xbc, 0x94, 0x99, 0x63, 0x52, 0x9c, 0x96, 0xdb, 0x10, 0x8b,
|
||||||
0xda, 0x9f, 0x43, 0x76, 0x32, 0x59, 0x85, 0xe4, 0xed, 0xb5, 0x5f, 0x5c, 0x8f, 0x5c, 0x70, 0x33,
|
0x95, 0xd6, 0x03, 0xde, 0x53, 0x85, 0xb7, 0x47, 0xea, 0x65, 0xf0, 0x8e, 0xc6, 0x3b, 0x92, 0xde,
|
||||||
0x72, 0xc1, 0xdf, 0x91, 0x0b, 0x2e, 0xc7, 0x6e, 0xe9, 0x66, 0xec, 0x96, 0x7e, 0x8f, 0xdd, 0xd2,
|
0x63, 0xeb, 0xc9, 0xf9, 0xd0, 0x46, 0x17, 0x43, 0x1b, 0xfd, 0x19, 0xda, 0xe8, 0xf3, 0xc8, 0xae,
|
||||||
0x7b, 0xd7, 0x6e, 0x33, 0xb4, 0x1b, 0xc9, 0x8b, 0x98, 0x89, 0x4e, 0x59, 0xfd, 0xab, 0x3c, 0xfb,
|
0x5c, 0x8c, 0xec, 0xca, 0xaf, 0x91, 0x5d, 0x79, 0x63, 0xa7, 0x6e, 0x36, 0x98, 0x68, 0x94, 0x9c,
|
||||||
0x1f, 0x00, 0x00, 0xff, 0xff, 0xd5, 0x23, 0xd8, 0xc6, 0x4e, 0x07, 0x00, 0x00,
|
0x46, 0x22, 0x6e, 0x57, 0xd5, 0xdf, 0xcd, 0xde, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x53, 0x17,
|
||||||
|
0x56, 0x65, 0x76, 0x07, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reference imports to suppress errors if they are not otherwise used.
|
// Reference imports to suppress errors if they are not otherwise used.
|
||||||
|
@ -556,7 +557,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient {
|
||||||
|
|
||||||
func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) {
|
func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) {
|
||||||
out := new(QueryParamsResponse)
|
out := new(QueryParamsResponse)
|
||||||
err := c.cc.Invoke(ctx, "/colinear.colinear.Query/Params", in, out, opts...)
|
err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/Params", in, out, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -565,7 +566,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts .
|
||||||
|
|
||||||
func (c *queryClient) NextAuction(ctx context.Context, in *QueryGetNextAuctionRequest, opts ...grpc.CallOption) (*QueryGetNextAuctionResponse, error) {
|
func (c *queryClient) NextAuction(ctx context.Context, in *QueryGetNextAuctionRequest, opts ...grpc.CallOption) (*QueryGetNextAuctionResponse, error) {
|
||||||
out := new(QueryGetNextAuctionResponse)
|
out := new(QueryGetNextAuctionResponse)
|
||||||
err := c.cc.Invoke(ctx, "/colinear.colinear.Query/NextAuction", in, out, opts...)
|
err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/NextAuction", in, out, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -574,7 +575,7 @@ func (c *queryClient) NextAuction(ctx context.Context, in *QueryGetNextAuctionRe
|
||||||
|
|
||||||
func (c *queryClient) Auction(ctx context.Context, in *QueryGetAuctionRequest, opts ...grpc.CallOption) (*QueryGetAuctionResponse, error) {
|
func (c *queryClient) Auction(ctx context.Context, in *QueryGetAuctionRequest, opts ...grpc.CallOption) (*QueryGetAuctionResponse, error) {
|
||||||
out := new(QueryGetAuctionResponse)
|
out := new(QueryGetAuctionResponse)
|
||||||
err := c.cc.Invoke(ctx, "/colinear.colinear.Query/Auction", in, out, opts...)
|
err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/Auction", in, out, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -583,7 +584,7 @@ func (c *queryClient) Auction(ctx context.Context, in *QueryGetAuctionRequest, o
|
||||||
|
|
||||||
func (c *queryClient) AuctionAll(ctx context.Context, in *QueryAllAuctionRequest, opts ...grpc.CallOption) (*QueryAllAuctionResponse, error) {
|
func (c *queryClient) AuctionAll(ctx context.Context, in *QueryAllAuctionRequest, opts ...grpc.CallOption) (*QueryAllAuctionResponse, error) {
|
||||||
out := new(QueryAllAuctionResponse)
|
out := new(QueryAllAuctionResponse)
|
||||||
err := c.cc.Invoke(ctx, "/colinear.colinear.Query/AuctionAll", in, out, opts...)
|
err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/AuctionAll", in, out, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -592,7 +593,7 @@ func (c *queryClient) AuctionAll(ctx context.Context, in *QueryAllAuctionRequest
|
||||||
|
|
||||||
func (c *queryClient) AuctionBids(ctx context.Context, in *QueryAuctionBidsRequest, opts ...grpc.CallOption) (*QueryAuctionBidsResponse, error) {
|
func (c *queryClient) AuctionBids(ctx context.Context, in *QueryAuctionBidsRequest, opts ...grpc.CallOption) (*QueryAuctionBidsResponse, error) {
|
||||||
out := new(QueryAuctionBidsResponse)
|
out := new(QueryAuctionBidsResponse)
|
||||||
err := c.cc.Invoke(ctx, "/colinear.colinear.Query/AuctionBids", in, out, opts...)
|
err := c.cc.Invoke(ctx, "/colinear.colinearcore.Query/AuctionBids", in, out, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -647,7 +648,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf
|
||||||
}
|
}
|
||||||
info := &grpc.UnaryServerInfo{
|
info := &grpc.UnaryServerInfo{
|
||||||
Server: srv,
|
Server: srv,
|
||||||
FullMethod: "/colinear.colinear.Query/Params",
|
FullMethod: "/colinear.colinearcore.Query/Params",
|
||||||
}
|
}
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest))
|
return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest))
|
||||||
|
@ -665,7 +666,7 @@ func _Query_NextAuction_Handler(srv interface{}, ctx context.Context, dec func(i
|
||||||
}
|
}
|
||||||
info := &grpc.UnaryServerInfo{
|
info := &grpc.UnaryServerInfo{
|
||||||
Server: srv,
|
Server: srv,
|
||||||
FullMethod: "/colinear.colinear.Query/NextAuction",
|
FullMethod: "/colinear.colinearcore.Query/NextAuction",
|
||||||
}
|
}
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
return srv.(QueryServer).NextAuction(ctx, req.(*QueryGetNextAuctionRequest))
|
return srv.(QueryServer).NextAuction(ctx, req.(*QueryGetNextAuctionRequest))
|
||||||
|
@ -683,7 +684,7 @@ func _Query_Auction_Handler(srv interface{}, ctx context.Context, dec func(inter
|
||||||
}
|
}
|
||||||
info := &grpc.UnaryServerInfo{
|
info := &grpc.UnaryServerInfo{
|
||||||
Server: srv,
|
Server: srv,
|
||||||
FullMethod: "/colinear.colinear.Query/Auction",
|
FullMethod: "/colinear.colinearcore.Query/Auction",
|
||||||
}
|
}
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
return srv.(QueryServer).Auction(ctx, req.(*QueryGetAuctionRequest))
|
return srv.(QueryServer).Auction(ctx, req.(*QueryGetAuctionRequest))
|
||||||
|
@ -701,7 +702,7 @@ func _Query_AuctionAll_Handler(srv interface{}, ctx context.Context, dec func(in
|
||||||
}
|
}
|
||||||
info := &grpc.UnaryServerInfo{
|
info := &grpc.UnaryServerInfo{
|
||||||
Server: srv,
|
Server: srv,
|
||||||
FullMethod: "/colinear.colinear.Query/AuctionAll",
|
FullMethod: "/colinear.colinearcore.Query/AuctionAll",
|
||||||
}
|
}
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
return srv.(QueryServer).AuctionAll(ctx, req.(*QueryAllAuctionRequest))
|
return srv.(QueryServer).AuctionAll(ctx, req.(*QueryAllAuctionRequest))
|
||||||
|
@ -719,7 +720,7 @@ func _Query_AuctionBids_Handler(srv interface{}, ctx context.Context, dec func(i
|
||||||
}
|
}
|
||||||
info := &grpc.UnaryServerInfo{
|
info := &grpc.UnaryServerInfo{
|
||||||
Server: srv,
|
Server: srv,
|
||||||
FullMethod: "/colinear.colinear.Query/AuctionBids",
|
FullMethod: "/colinear.colinearcore.Query/AuctionBids",
|
||||||
}
|
}
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
return srv.(QueryServer).AuctionBids(ctx, req.(*QueryAuctionBidsRequest))
|
return srv.(QueryServer).AuctionBids(ctx, req.(*QueryAuctionBidsRequest))
|
||||||
|
@ -728,7 +729,7 @@ func _Query_AuctionBids_Handler(srv interface{}, ctx context.Context, dec func(i
|
||||||
}
|
}
|
||||||
|
|
||||||
var _Query_serviceDesc = grpc.ServiceDesc{
|
var _Query_serviceDesc = grpc.ServiceDesc{
|
||||||
ServiceName: "colinear.colinear.Query",
|
ServiceName: "colinear.colinearcore.Query",
|
||||||
HandlerType: (*QueryServer)(nil),
|
HandlerType: (*QueryServer)(nil),
|
||||||
Methods: []grpc.MethodDesc{
|
Methods: []grpc.MethodDesc{
|
||||||
{
|
{
|
||||||
|
@ -753,7 +754,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Streams: []grpc.StreamDesc{},
|
Streams: []grpc.StreamDesc{},
|
||||||
Metadata: "colinear/query.proto",
|
Metadata: "colinear-core/query.proto",
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) {
|
func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.
|
// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.
|
||||||
// source: colinear/query.proto
|
// source: colinear-core/query.proto
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Package types is a reverse proxy.
|
Package types is a reverse proxy.
|
||||||
|
@ -479,15 +479,15 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"colinear", "colinear", "params"}, "", runtime.AssumeColonVerbOpt(true)))
|
pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1}, []string{"colinear-core", "params"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||||
|
|
||||||
pattern_Query_NextAuction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"colinear", "colinear", "next_auction"}, "", runtime.AssumeColonVerbOpt(true)))
|
pattern_Query_NextAuction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1}, []string{"colinear-core", "next_auction"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||||
|
|
||||||
pattern_Query_Auction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"colinear", "colinear", "auction", "index"}, "", runtime.AssumeColonVerbOpt(true)))
|
pattern_Query_Auction_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"colinear-core", "auction", "index"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||||
|
|
||||||
pattern_Query_AuctionAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"colinear", "colinear", "auction"}, "", runtime.AssumeColonVerbOpt(true)))
|
pattern_Query_AuctionAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1}, []string{"colinear-core", "auction"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||||
|
|
||||||
pattern_Query_AuctionBids_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"colinear", "colinear", "auction_bids", "index"}, "", runtime.AssumeColonVerbOpt(true)))
|
pattern_Query_AuctionBids_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 0, 2, 1, 1, 0, 4, 1, 5, 2}, []string{"colinear-core", "auction_bids", "index"}, "", runtime.AssumeColonVerbOpt(true)))
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||||
// source: colinear/tx.proto
|
// source: colinear-core/tx.proto
|
||||||
|
|
||||||
package types
|
package types
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ func (m *MsgNewAuction) Reset() { *m = MsgNewAuction{} }
|
||||||
func (m *MsgNewAuction) String() string { return proto.CompactTextString(m) }
|
func (m *MsgNewAuction) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgNewAuction) ProtoMessage() {}
|
func (*MsgNewAuction) ProtoMessage() {}
|
||||||
func (*MsgNewAuction) Descriptor() ([]byte, []int) {
|
func (*MsgNewAuction) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_2fcd5aa4ac15d93c, []int{0}
|
return fileDescriptor_a752a1f2bf4fb99e, []int{0}
|
||||||
}
|
}
|
||||||
func (m *MsgNewAuction) XXX_Unmarshal(b []byte) error {
|
func (m *MsgNewAuction) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -119,7 +119,7 @@ func (m *MsgNewAuctionResponse) Reset() { *m = MsgNewAuctionResponse{} }
|
||||||
func (m *MsgNewAuctionResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgNewAuctionResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgNewAuctionResponse) ProtoMessage() {}
|
func (*MsgNewAuctionResponse) ProtoMessage() {}
|
||||||
func (*MsgNewAuctionResponse) Descriptor() ([]byte, []int) {
|
func (*MsgNewAuctionResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_2fcd5aa4ac15d93c, []int{1}
|
return fileDescriptor_a752a1f2bf4fb99e, []int{1}
|
||||||
}
|
}
|
||||||
func (m *MsgNewAuctionResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgNewAuctionResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -165,7 +165,7 @@ func (m *MsgNewBid) Reset() { *m = MsgNewBid{} }
|
||||||
func (m *MsgNewBid) String() string { return proto.CompactTextString(m) }
|
func (m *MsgNewBid) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgNewBid) ProtoMessage() {}
|
func (*MsgNewBid) ProtoMessage() {}
|
||||||
func (*MsgNewBid) Descriptor() ([]byte, []int) {
|
func (*MsgNewBid) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_2fcd5aa4ac15d93c, []int{2}
|
return fileDescriptor_a752a1f2bf4fb99e, []int{2}
|
||||||
}
|
}
|
||||||
func (m *MsgNewBid) XXX_Unmarshal(b []byte) error {
|
func (m *MsgNewBid) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -222,7 +222,7 @@ func (m *MsgNewBidResponse) Reset() { *m = MsgNewBidResponse{} }
|
||||||
func (m *MsgNewBidResponse) String() string { return proto.CompactTextString(m) }
|
func (m *MsgNewBidResponse) String() string { return proto.CompactTextString(m) }
|
||||||
func (*MsgNewBidResponse) ProtoMessage() {}
|
func (*MsgNewBidResponse) ProtoMessage() {}
|
||||||
func (*MsgNewBidResponse) Descriptor() ([]byte, []int) {
|
func (*MsgNewBidResponse) Descriptor() ([]byte, []int) {
|
||||||
return fileDescriptor_2fcd5aa4ac15d93c, []int{3}
|
return fileDescriptor_a752a1f2bf4fb99e, []int{3}
|
||||||
}
|
}
|
||||||
func (m *MsgNewBidResponse) XXX_Unmarshal(b []byte) error {
|
func (m *MsgNewBidResponse) XXX_Unmarshal(b []byte) error {
|
||||||
return m.Unmarshal(b)
|
return m.Unmarshal(b)
|
||||||
|
@ -252,38 +252,38 @@ func (m *MsgNewBidResponse) XXX_DiscardUnknown() {
|
||||||
var xxx_messageInfo_MsgNewBidResponse proto.InternalMessageInfo
|
var xxx_messageInfo_MsgNewBidResponse proto.InternalMessageInfo
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
proto.RegisterType((*MsgNewAuction)(nil), "colinear.colinear.MsgNewAuction")
|
proto.RegisterType((*MsgNewAuction)(nil), "colinear.colinearcore.MsgNewAuction")
|
||||||
proto.RegisterType((*MsgNewAuctionResponse)(nil), "colinear.colinear.MsgNewAuctionResponse")
|
proto.RegisterType((*MsgNewAuctionResponse)(nil), "colinear.colinearcore.MsgNewAuctionResponse")
|
||||||
proto.RegisterType((*MsgNewBid)(nil), "colinear.colinear.MsgNewBid")
|
proto.RegisterType((*MsgNewBid)(nil), "colinear.colinearcore.MsgNewBid")
|
||||||
proto.RegisterType((*MsgNewBidResponse)(nil), "colinear.colinear.MsgNewBidResponse")
|
proto.RegisterType((*MsgNewBidResponse)(nil), "colinear.colinearcore.MsgNewBidResponse")
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { proto.RegisterFile("colinear/tx.proto", fileDescriptor_2fcd5aa4ac15d93c) }
|
func init() { proto.RegisterFile("colinear-core/tx.proto", fileDescriptor_a752a1f2bf4fb99e) }
|
||||||
|
|
||||||
var fileDescriptor_2fcd5aa4ac15d93c = []byte{
|
var fileDescriptor_a752a1f2bf4fb99e = []byte{
|
||||||
// 338 bytes of a gzipped FileDescriptorProto
|
// 342 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xcf, 0x4a, 0xc3, 0x40,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xb1, 0x4e, 0xfb, 0x30,
|
||||||
0x10, 0xc6, 0xbb, 0xb6, 0x8d, 0x76, 0xd4, 0x83, 0x5b, 0x2b, 0x4b, 0x91, 0x25, 0x04, 0x0f, 0x3d,
|
0x10, 0xc6, 0xeb, 0x7f, 0xdb, 0xfc, 0xe9, 0x01, 0x03, 0x86, 0x56, 0x56, 0x85, 0xac, 0x28, 0x62,
|
||||||
0x68, 0x0a, 0x8a, 0xe0, 0xd5, 0x82, 0x07, 0x0f, 0xf5, 0x50, 0x3c, 0x79, 0x32, 0x66, 0x87, 0x12,
|
0xe8, 0x00, 0xa9, 0x04, 0x42, 0x62, 0xa5, 0x12, 0x03, 0x43, 0x19, 0x2a, 0x26, 0x26, 0x4c, 0x7c,
|
||||||
0x68, 0x76, 0x43, 0x76, 0x8b, 0xf5, 0x2d, 0x7c, 0x0f, 0x9f, 0xc1, 0xbb, 0xc7, 0x1e, 0x3d, 0x4a,
|
0xaa, 0x2c, 0xb5, 0x76, 0x14, 0xa7, 0xa2, 0xbc, 0x05, 0xef, 0xc1, 0x33, 0xb0, 0x33, 0x76, 0x64,
|
||||||
0xfb, 0x22, 0xe2, 0x66, 0xd3, 0x3f, 0x20, 0xd5, 0xdb, 0x7c, 0xbf, 0xcc, 0x37, 0x99, 0x2f, 0x19,
|
0x44, 0xed, 0x8b, 0xa0, 0x26, 0x71, 0x69, 0x10, 0x2a, 0x6c, 0xfe, 0x7e, 0xbe, 0xef, 0x72, 0x5f,
|
||||||
0x68, 0xc6, 0x4a, 0xa7, 0x4a, 0x1b, 0xd4, 0xa6, 0x6b, 0x26, 0x61, 0x96, 0x2b, 0xa3, 0x68, 0x6b,
|
0x7c, 0xd0, 0x8a, 0xcc, 0x48, 0x69, 0x14, 0xc9, 0x49, 0x64, 0x12, 0xec, 0xa6, 0xd3, 0x30, 0x4e,
|
||||||
0x09, 0xc3, 0x65, 0x19, 0xbc, 0x11, 0xd8, 0xef, 0xeb, 0xe1, 0x1d, 0x3e, 0x5f, 0x8f, 0x63, 0x93,
|
0x4c, 0x6a, 0x68, 0xd3, 0xf1, 0xd0, 0x1d, 0x96, 0xf7, 0xc1, 0x0b, 0x81, 0xdd, 0xbe, 0x1d, 0xde,
|
||||||
0x28, 0x49, 0x19, 0x6c, 0xc7, 0x39, 0x46, 0x46, 0xe5, 0x8c, 0xf8, 0xa4, 0xd3, 0x18, 0x94, 0x92,
|
0xe0, 0xe3, 0xe5, 0x24, 0x4a, 0x95, 0xd1, 0x94, 0xc1, 0xff, 0x28, 0x41, 0x91, 0x9a, 0x84, 0x11,
|
||||||
0x52, 0xa8, 0xc9, 0x28, 0x45, 0xb6, 0x65, 0xb1, 0xad, 0xa9, 0x0f, 0xbb, 0x02, 0x75, 0x9c, 0x27,
|
0x9f, 0x74, 0x1a, 0x03, 0x27, 0x29, 0x85, 0x9a, 0x16, 0x63, 0x64, 0xff, 0x32, 0x9c, 0x9d, 0xa9,
|
||||||
0xd9, 0x8f, 0x99, 0x55, 0xed, 0xa3, 0x55, 0x64, 0xe7, 0x61, 0x32, 0x4a, 0xe4, 0x90, 0xd5, 0xdc,
|
0x0f, 0xdb, 0x12, 0x6d, 0x94, 0xa8, 0x78, 0x69, 0x66, 0xd5, 0xec, 0x6a, 0x1d, 0x65, 0xfd, 0x50,
|
||||||
0xbc, 0x42, 0xd2, 0x43, 0xa8, 0x0b, 0x94, 0x2a, 0x65, 0x75, 0xcb, 0x0b, 0x41, 0xdb, 0xb0, 0x33,
|
0x8d, 0x94, 0x1e, 0xb2, 0x5a, 0xd1, 0x2f, 0x97, 0xf4, 0x00, 0xea, 0x12, 0xb5, 0x19, 0xb3, 0x7a,
|
||||||
0xc2, 0x48, 0xe3, 0x8d, 0x14, 0xcc, 0xf3, 0x49, 0xa7, 0x36, 0x58, 0xe8, 0xe0, 0x12, 0x5a, 0x6b,
|
0xc6, 0x73, 0x41, 0xdb, 0xb0, 0x35, 0x42, 0x61, 0xf1, 0x4a, 0x4b, 0xe6, 0xf9, 0xa4, 0x53, 0x1b,
|
||||||
0xcb, 0x0e, 0x50, 0x67, 0x4a, 0x6a, 0xa4, 0xc7, 0xd0, 0x88, 0x0a, 0x74, 0x2b, 0xdc, 0xda, 0x4b,
|
0xac, 0x74, 0x70, 0x0e, 0xcd, 0xd2, 0xb0, 0x03, 0xb4, 0xb1, 0xd1, 0x16, 0xe9, 0x21, 0x34, 0x44,
|
||||||
0x10, 0x44, 0xd0, 0x28, 0x6c, 0xbd, 0x44, 0x6c, 0xc8, 0x17, 0xc0, 0x5e, 0xe9, 0x91, 0x02, 0x27,
|
0x8e, 0xae, 0x65, 0x31, 0xf6, 0x17, 0x08, 0x04, 0x34, 0x72, 0x5b, 0x4f, 0xc9, 0x0d, 0xf9, 0x02,
|
||||||
0x2e, 0xe7, 0x1a, 0xa3, 0x47, 0xe0, 0x45, 0xa9, 0x1a, 0x4b, 0xe3, 0xa2, 0x3a, 0x15, 0x34, 0xe1,
|
0xd8, 0x71, 0x1e, 0x2d, 0x71, 0x5a, 0xe4, 0x2c, 0x31, 0xda, 0x02, 0x4f, 0x8c, 0xcd, 0x44, 0xa7,
|
||||||
0x60, 0xf1, 0x8a, 0x72, 0xab, 0xf3, 0x77, 0x02, 0xd5, 0xbe, 0x1e, 0xd2, 0x47, 0x80, 0x95, 0x0f,
|
0x45, 0xd4, 0x42, 0x05, 0xfb, 0xb0, 0xb7, 0xfa, 0x84, 0x9b, 0xea, 0xf4, 0x95, 0x40, 0xb5, 0x6f,
|
||||||
0x7c, 0x12, 0xfe, 0xfa, 0x2b, 0xc2, 0xb5, 0x64, 0xed, 0xd3, 0xff, 0x74, 0x2d, 0xf2, 0xdf, 0x83,
|
0x87, 0xf4, 0x1e, 0x60, 0xed, 0x07, 0x1f, 0x85, 0x3f, 0x3e, 0x45, 0x58, 0x4a, 0xd6, 0x3e, 0xfe,
|
||||||
0xe7, 0xe2, 0xf9, 0x1b, 0x7d, 0xbd, 0x44, 0xb4, 0x3b, 0x7f, 0x75, 0x94, 0x53, 0x7b, 0x57, 0x1f,
|
0x4b, 0xd5, 0x2a, 0xff, 0x2d, 0x78, 0x45, 0x3c, 0x7f, 0xa3, 0xaf, 0xa7, 0x64, 0xbb, 0xf3, 0x5b,
|
||||||
0x33, 0x4e, 0xa6, 0x33, 0x4e, 0xbe, 0x66, 0x9c, 0xbc, 0xce, 0x79, 0x65, 0x3a, 0xe7, 0x95, 0xcf,
|
0x85, 0xeb, 0xda, 0xbb, 0x78, 0x9b, 0x73, 0x32, 0x9b, 0x73, 0xf2, 0x31, 0xe7, 0xe4, 0x79, 0xc1,
|
||||||
0x39, 0xaf, 0x3c, 0xf0, 0xc2, 0x77, 0x66, 0x6f, 0x6c, 0xd2, 0x5d, 0x3d, 0xb8, 0x97, 0x0c, 0xf5,
|
0x2b, 0xb3, 0x05, 0xaf, 0xbc, 0x2f, 0x78, 0xe5, 0x8e, 0x3b, 0x67, 0x77, 0xda, 0xfd, 0xb6, 0x70,
|
||||||
0x93, 0x67, 0x8f, 0xee, 0xe2, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x58, 0xb3, 0x7c, 0x83, 0x8b, 0x02,
|
0x4f, 0x31, 0xda, 0x07, 0x2f, 0x5b, 0xba, 0xb3, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x4a,
|
||||||
0x00, 0x00,
|
0x01, 0x9b, 0x8e, 0x02, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reference imports to suppress errors if they are not otherwise used.
|
// Reference imports to suppress errors if they are not otherwise used.
|
||||||
|
@ -312,7 +312,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient {
|
||||||
|
|
||||||
func (c *msgClient) NewAuction(ctx context.Context, in *MsgNewAuction, opts ...grpc.CallOption) (*MsgNewAuctionResponse, error) {
|
func (c *msgClient) NewAuction(ctx context.Context, in *MsgNewAuction, opts ...grpc.CallOption) (*MsgNewAuctionResponse, error) {
|
||||||
out := new(MsgNewAuctionResponse)
|
out := new(MsgNewAuctionResponse)
|
||||||
err := c.cc.Invoke(ctx, "/colinear.colinear.Msg/NewAuction", in, out, opts...)
|
err := c.cc.Invoke(ctx, "/colinear.colinearcore.Msg/NewAuction", in, out, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -321,7 +321,7 @@ func (c *msgClient) NewAuction(ctx context.Context, in *MsgNewAuction, opts ...g
|
||||||
|
|
||||||
func (c *msgClient) NewBid(ctx context.Context, in *MsgNewBid, opts ...grpc.CallOption) (*MsgNewBidResponse, error) {
|
func (c *msgClient) NewBid(ctx context.Context, in *MsgNewBid, opts ...grpc.CallOption) (*MsgNewBidResponse, error) {
|
||||||
out := new(MsgNewBidResponse)
|
out := new(MsgNewBidResponse)
|
||||||
err := c.cc.Invoke(ctx, "/colinear.colinear.Msg/NewBid", in, out, opts...)
|
err := c.cc.Invoke(ctx, "/colinear.colinearcore.Msg/NewBid", in, out, opts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -359,7 +359,7 @@ func _Msg_NewAuction_Handler(srv interface{}, ctx context.Context, dec func(inte
|
||||||
}
|
}
|
||||||
info := &grpc.UnaryServerInfo{
|
info := &grpc.UnaryServerInfo{
|
||||||
Server: srv,
|
Server: srv,
|
||||||
FullMethod: "/colinear.colinear.Msg/NewAuction",
|
FullMethod: "/colinear.colinearcore.Msg/NewAuction",
|
||||||
}
|
}
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
return srv.(MsgServer).NewAuction(ctx, req.(*MsgNewAuction))
|
return srv.(MsgServer).NewAuction(ctx, req.(*MsgNewAuction))
|
||||||
|
@ -377,7 +377,7 @@ func _Msg_NewBid_Handler(srv interface{}, ctx context.Context, dec func(interfac
|
||||||
}
|
}
|
||||||
info := &grpc.UnaryServerInfo{
|
info := &grpc.UnaryServerInfo{
|
||||||
Server: srv,
|
Server: srv,
|
||||||
FullMethod: "/colinear.colinear.Msg/NewBid",
|
FullMethod: "/colinear.colinearcore.Msg/NewBid",
|
||||||
}
|
}
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
return srv.(MsgServer).NewBid(ctx, req.(*MsgNewBid))
|
return srv.(MsgServer).NewBid(ctx, req.(*MsgNewBid))
|
||||||
|
@ -386,7 +386,7 @@ func _Msg_NewBid_Handler(srv interface{}, ctx context.Context, dec func(interfac
|
||||||
}
|
}
|
||||||
|
|
||||||
var _Msg_serviceDesc = grpc.ServiceDesc{
|
var _Msg_serviceDesc = grpc.ServiceDesc{
|
||||||
ServiceName: "colinear.colinear.Msg",
|
ServiceName: "colinear.colinearcore.Msg",
|
||||||
HandlerType: (*MsgServer)(nil),
|
HandlerType: (*MsgServer)(nil),
|
||||||
Methods: []grpc.MethodDesc{
|
Methods: []grpc.MethodDesc{
|
||||||
{
|
{
|
||||||
|
@ -399,7 +399,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Streams: []grpc.StreamDesc{},
|
Streams: []grpc.StreamDesc{},
|
||||||
Metadata: "colinear/tx.proto",
|
Metadata: "colinear-core/tx.proto",
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MsgNewAuction) Marshal() (dAtA []byte, err error) {
|
func (m *MsgNewAuction) Marshal() (dAtA []byte, err error) {
|
||||||
|
|
Loading…
Reference in New Issue