diff --git a/x/staking/keeper/keeper_ibc_adapter.go b/x/staking/keeper/keeper_ibc_adapter.go index 658191530e..e865dc74c3 100644 --- a/x/staking/keeper/keeper_ibc_adapter.go +++ b/x/staking/keeper/keeper_ibc_adapter.go @@ -84,7 +84,8 @@ func (k Keeper) GetLastValidators(ctx sdk.Context) (validators []outtypes.Valida // sanity check if i >= int(maxValidators) { - panic("more validators than maxValidators found") + break + //panic("more validators than maxValidators found") } address := types.AddressFromLastValidatorPowerKey(iterator.Key()) validator := k.mustGetValidator(ctx, address)