pub type ClaimedRewards<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageClaimedRewards<T>, Twox64Concat, EraIndex, Twox64Concat, T::AccountId, WeakBoundedVec<Page, ClaimedRewardsBound<T>>, ValueQuery>;Expand description
History of claimed paged rewards by era and validator.
This is keyed by era and validator stash which maps to the set of page indexes which have been claimed.
It is removed after Config::HistoryDepth eras.
Storage type is StorageDoubleMap with key1 type EraIndex, key2 type T :: AccountId and value type WeakBoundedVec < Page, ClaimedRewardsBound < T > >.
Aliased Typeยง
pub struct ClaimedRewards<T: Config>(/* private fields */);