mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
8128a680cc
* make auctions not expire without bids * add events * improve genesis state validation * add genesis tests * Keeper auctions test, types auctions test, keeper bidding test * Resolved TODOs, added querier test * Removed 'import x/liquidator' from keeper_test package for circleci * Fixes for lack of liquidator module account in tests * update comment Co-Authored-By: Kevin Davis <karzak@users.noreply.github.com> * add more events attributes * feat: add back bidding on closed auction test * feat: test failed debt/collateral auctions Co-authored-by: Ruaridh <rhuairahrighairidh@users.noreply.github.com> Co-authored-by: Denali Marsh <denalimarsh@gmail.com>
37 lines
994 B
Go
37 lines
994 B
Go
package keeper
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/kava-labs/kava/x/auction/types"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
)
|
|
|
|
// NewQuerier is the module level router for state queries
|
|
func NewQuerier(keeper Keeper) sdk.Querier {
|
|
return func(ctx sdk.Context, path []string, req abci.RequestQuery) (res []byte, err sdk.Error) {
|
|
switch path[0] {
|
|
case types.QueryGetAuction:
|
|
return queryAuctions(ctx, req, keeper)
|
|
default:
|
|
return nil, sdk.ErrUnknownRequest("unknown auction query endpoint")
|
|
}
|
|
}
|
|
}
|
|
|
|
func queryAuctions(ctx sdk.Context, req abci.RequestQuery, keeper Keeper) (res []byte, err sdk.Error) {
|
|
var auctionsList types.Auctions
|
|
|
|
keeper.IterateAuctions(ctx, func(a types.Auction) bool {
|
|
auctionsList = append(auctionsList, a)
|
|
return false
|
|
})
|
|
|
|
bz, err2 := codec.MarshalJSONIndent(keeper.cdc, auctionsList)
|
|
if err2 != nil {
|
|
panic("could not marshal result to JSON")
|
|
}
|
|
|
|
return bz, nil
|
|
}
|