Type Alias pallet_staking::Payee
source · pub type Payee<T: Config> = StorageMap<_GeneratedPrefixForStoragePayee<T>, Twox64Concat, T::AccountId, RewardDestination<T::AccountId>, OptionQuery>;
Expand description
Where the reward payment should be made. Keyed by stash.
TWOX-NOTE: SAFE since AccountId
is a secure hash.
Storage type is [StorageMap
] with key type T :: AccountId
and value type RewardDestination < T :: AccountId >
.
Aliased Type§
struct Payee<T: Config>(/* private fields */);