diff --git a/x/millions/keeper/poolrunner.go b/x/millions/keeper/poolrunner.go index 0f843e05..c2aced31 100644 --- a/x/millions/keeper/poolrunner.go +++ b/x/millions/keeper/poolrunner.go @@ -29,7 +29,7 @@ type PoolRunner interface { TransferDepositToRemoteZone(ctx sdk.Context, pool types.Pool, deposit types.Deposit) error // DelegateDepositOnRemoteZone launches an ICA action on the remote Pool owned address (such as delegate coins for native staking Pools) DelegateDepositOnRemoteZone(ctx sdk.Context, pool types.Pool, deposit types.Deposit) ([]*types.SplitDelegation, error) - // UndelegateWithdrawalOnRemoteZone launches and ICA action on the remote Pool owned address (such as undelegate coins for native staking Pools) + // UndelegateWithdrawalsOnRemoteZone launches and ICA action on the remote Pool owned address (such as undelegate coins for native staking Pools) UndelegateWithdrawalsOnRemoteZone(ctx sdk.Context, epochUnbonding types.EpochUnbonding) ([]*types.SplitDelegation, *time.Time, error) // RedelegateToActiveValidatorsOnRemoteZone launches an ICA action on the remote pool to redelegate the bonded tokens from inactive to active validators RedelegateToActiveValidatorsOnRemoteZone(ctx sdk.Context, pool types.Pool, validator types.PoolValidator, splits []*types.SplitDelegation) error