Type Definition pallet_proof_of_stake::pallet::RewardsInfoForScheduleRewards
source · pub type RewardsInfoForScheduleRewards<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageRewardsInfoForScheduleRewards<T>, Twox64Concat, <T as Config>::AccountId, Twox64Concat, (<<T as Config>::Currency as MultiTokenCurrency<<T as Config>::AccountId>>::CurrencyId, <<T as Config>::Currency as MultiTokenCurrency<<T as Config>::AccountId>>::CurrencyId), RewardInfo<<<T as Config>::Currency as MultiTokenCurrency<<T as Config>::AccountId>>::Balance>, ValueQuery>;
Expand description
Stores information about pool weight and accumulated rewards
Storage type is StorageDoubleMap
with key1 type AccountIdOf < T >, key2 type (CurrencyIdOf < T >, CurrencyIdOf < T >) and value type RewardInfo < BalanceOf < T > >.