Payee

Type Alias 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ยง

pub struct Payee<T: Config>(/* private fields */);