Type Definition reward::pallet::RewardCurrencies
source · pub type RewardCurrencies<T: Config<I>, I: 'static = ()> = StorageMap<_GeneratedPrefixForStorageRewardCurrencies<T, I>, Blake2_128Concat, T::PoolId, BoundedBTreeSet<T::CurrencyId, T::MaxRewardCurrencies>, ValueQuery>;
Expand description
Track the currencies used for rewards.
Storage type is [StorageMap
] with key type T :: PoolId
and value type BoundedBTreeSet < T :: CurrencyId, T :: MaxRewardCurrencies >
.