mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
bfb9f7e20a
* cleanup begin/end block * update cdp BeginBlocker * update dist mint * fix tests * typo * add comment on CloseExpiredAuctions * fix tests
18 lines
424 B
Go
18 lines
424 B
Go
package auction
|
|
|
|
import (
|
|
"errors"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/kava-labs/kava/x/auction/types"
|
|
)
|
|
|
|
// 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) {
|
|
err := k.CloseExpiredAuctions(ctx)
|
|
if err != nil && !errors.Is(err, types.ErrAuctionNotFound) {
|
|
panic(err)
|
|
}
|
|
}
|