Type Definition pallet_staking::Payee

source ·
pub type Payee<T: Config> = StorageMap<_GeneratedPrefixForStoragePayee<T>, Twox64Concat, T::AccountId, RewardDestination<T::AccountId>, ValueQuery>;
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 >.