Type Definition pallet_staking::ErasValidatorReward
source · pub type ErasValidatorReward<T: Config> = StorageMap<_GeneratedPrefixForStorageErasValidatorReward<T>, Twox64Concat, EraIndex, BalanceOf<T>>;
Expand description
The total validator era payout for the last HISTORY_DEPTH
eras.
Eras that haven’t finished yet or has been removed doesn’t have reward.
Storage type is StorageMap
with key type EraIndex
and value type BalanceOf < T >
.