(ctx sdk.Context, addr sdk.ValAddress)
| 8 | // StakingKeeper defines the expected staking keeper |
| 9 | type StakingKeeper interface { |
| 10 | GetValidator(ctx sdk.Context, addr sdk.ValAddress) (validator staking.Validator, found bool) |
| 11 | GetLastValidatorPower(ctx sdk.Context, operator sdk.ValAddress) (power int64) |
| 12 | GetLastTotalPower(ctx sdk.Context) (power sdk.Int) |
| 13 | GetBondedValidatorsByPower(ctx sdk.Context) []staking.Validator |
no outgoing calls