fmt & leftovers from previous scaffold
parent
7ecb5a9fe8
commit
3eb2cd36c4
|
@ -20143,15 +20143,13 @@ paths:
|
|||
type: string
|
||||
description:
|
||||
type: string
|
||||
bids:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
topBid:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
pagination:
|
||||
type: object
|
||||
properties:
|
||||
|
@ -20244,6 +20242,16 @@ paths:
|
|||
in: query
|
||||
required: false
|
||||
type: boolean
|
||||
- name: pagination.reverse
|
||||
description: >-
|
||||
reverse is set to true if results are to be returned in the
|
||||
descending order.
|
||||
|
||||
|
||||
Since: cosmos-sdk 0.43
|
||||
in: query
|
||||
required: false
|
||||
type: boolean
|
||||
tags:
|
||||
- Query
|
||||
'/cosmos-test/cosmostest/auction/{index}':
|
||||
|
@ -20265,15 +20273,13 @@ paths:
|
|||
type: string
|
||||
description:
|
||||
type: string
|
||||
bids:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
topBid:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
default:
|
||||
description: An unexpected error response.
|
||||
schema:
|
||||
|
@ -47400,15 +47406,13 @@ definitions:
|
|||
type: string
|
||||
description:
|
||||
type: string
|
||||
bids:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
topBid:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
cosmostest.cosmostest.Bid:
|
||||
type: object
|
||||
properties:
|
||||
|
@ -47446,15 +47450,13 @@ definitions:
|
|||
type: string
|
||||
description:
|
||||
type: string
|
||||
bids:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
topBid:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
pagination:
|
||||
type: object
|
||||
properties:
|
||||
|
@ -47492,15 +47494,13 @@ definitions:
|
|||
type: string
|
||||
description:
|
||||
type: string
|
||||
bids:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
topBid:
|
||||
type: object
|
||||
properties:
|
||||
owner:
|
||||
type: string
|
||||
amount:
|
||||
type: string
|
||||
cosmostest.cosmostest.QueryGetNextAuctionResponse:
|
||||
type: object
|
||||
properties:
|
||||
|
|
|
@ -2,6 +2,7 @@ package keeper
|
|||
|
||||
import (
|
||||
"cosmos-test/x/cosmostest/types"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/store/prefix"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
)
|
||||
|
|
|
@ -4,6 +4,7 @@ import (
|
|||
"context"
|
||||
|
||||
"cosmos-test/x/cosmostest/types"
|
||||
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"google.golang.org/grpc/codes"
|
||||
"google.golang.org/grpc/status"
|
||||
|
|
Loading…
Reference in New Issue