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

12 lines
239 B
Go
Raw Normal View History

2020-12-21 17:18:55 +00:00
package hard
import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/kava-labs/kava/x/hard/keeper"
)
// BeginBlocker updates interest rates
func BeginBlocker(ctx sdk.Context, k keeper.Keeper) {
k.ApplyInterestRateUpdates(ctx)
}