0g-chain/x/auction/abci.go

20 lines
478 B
Go
Raw Normal View History

2019-11-25 19:46:02 +00:00
package auction
import (
"errors"
2019-11-25 19:46:02 +00:00
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/kava-labs/kava/x/auction/keeper"
"github.com/kava-labs/kava/x/auction/types"
2019-11-25 19:46:02 +00:00
)
// BeginBlocker closes all expired auctions at the end of each block. It panics if
// there's an error other than ErrAuctionNotFound.
func BeginBlocker(ctx sdk.Context, k keeper.Keeper) {
err := k.CloseExpiredAuctions(ctx)
if err != nil && !errors.Is(err, types.ErrAuctionNotFound) {
panic(err)
2019-11-25 19:46:02 +00:00
}
}