We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed71217 commit f4fb666Copy full SHA for f4fb666
x/interchainstaking/keeper/abci.go
@@ -31,11 +31,11 @@ func (k *Keeper) BeginBlocker(ctx sdk.Context) {
31
if err := k.GCCompletedRedelegations(ctx); err != nil {
32
k.Logger(ctx).Error("error in GCCompletedRedelegations", "error", err)
33
}
34
-
35
- // k.HandleMaturedUnbondings(ctx)
+ k.HandleMaturedUnbondings(ctx)
36
+
37
k.IterateZones(ctx, func(index int64, zone *types.Zone) (stop bool) {
38
- if ctx.BlockHeight()%30 == 0 {
+ if ctx.BlockHeight()%blockInterval == 0 {
39
// for the tasks below, we cannot panic in begin blocker; as this will crash the chain.
40
// and as failing here is not terminal panicking is not necessary, but we should log
41
// as an error. we don't return on failure here as we still want to attempt the unrelated
0 commit comments