mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
12 lines
248 B
Go
12 lines
248 B
Go
package hard
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// BeginBlocker updates interest rates and attempts liquidations
|
|
func BeginBlocker(ctx sdk.Context, k Keeper) {
|
|
k.ApplyInterestRateUpdates(ctx)
|
|
k.AttemptIndexLiquidations(ctx)
|
|
}
|