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

18 lines
434 B
Go
Raw Normal View History

2020-12-21 17:18:55 +00:00
package hard
import (
"time"
2024-05-01 03:17:24 +00:00
"github.com/0glabs/0g-chain/x/hard/keeper"
"github.com/0glabs/0g-chain/x/hard/types"
"github.com/cosmos/cosmos-sdk/telemetry"
sdk "github.com/cosmos/cosmos-sdk/types"
)
// BeginBlocker updates interest rates
func BeginBlocker(ctx sdk.Context, k keeper.Keeper) {
defer telemetry.ModuleMeasureSince(types.ModuleName, time.Now(), telemetry.MetricKeyBeginBlocker)
k.ApplyInterestRateUpdates(ctx)
}