mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-27 00:35:18 +00:00
268 B
268 B
Begin Block
At the start of each block, coins held by blocked addresses are redeemed
func BeginBlocker(ctx sdk.Context, k Keeper) {
err := k.RedeemTokensFromBlockedAddresses(ctx, k)
if err != nil {
panic(err)
}
}