Skip to content

Commit f4fb666

Browse files
author
Joe Bowman
committed
auto-gc unbonding records
1 parent ed71217 commit f4fb666

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x/interchainstaking/keeper/abci.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ func (k *Keeper) BeginBlocker(ctx sdk.Context) {
3131
if err := k.GCCompletedRedelegations(ctx); err != nil {
3232
k.Logger(ctx).Error("error in GCCompletedRedelegations", "error", err)
3333
}
34-
35-
// k.HandleMaturedUnbondings(ctx)
34+
k.HandleMaturedUnbondings(ctx)
3635
}
36+
3737
k.IterateZones(ctx, func(index int64, zone *types.Zone) (stop bool) {
38-
if ctx.BlockHeight()%30 == 0 {
38+
if ctx.BlockHeight()%blockInterval == 0 {
3939
// for the tasks below, we cannot panic in begin blocker; as this will crash the chain.
4040
// and as failing here is not terminal panicking is not necessary, but we should log
4141
// as an error. we don't return on failure here as we still want to attempt the unrelated

0 commit comments

Comments
 (0)