mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-14 03:55:19 +00:00
f898e3aff4
* feat(metrics): add timing metrics to abci methods (#1669)
* feat(metrics): add timing metrics to abci methods
* update changelog
(cherry picked from commit 8b6bbd36f4
)
# Conflicts:
# CHANGELOG.md
* fix changlog conflicts
---------
Co-authored-by: Robert Pirtle <Astropirtle@gmail.com>
24 lines
628 B
Go
24 lines
628 B
Go
package auction
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/cosmos/cosmos-sdk/telemetry"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/kava-labs/kava/x/auction/keeper"
|
|
"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.Keeper) {
|
|
defer telemetry.ModuleMeasureSince(types.ModuleName, time.Now(), telemetry.MetricKeyBeginBlocker)
|
|
|
|
err := k.CloseExpiredAuctions(ctx)
|
|
if err != nil && !errors.Is(err, types.ErrAuctionNotFound) {
|
|
panic(err)
|
|
}
|
|
}
|