pub type ProviderBoostRewardPools<T: Config> = StorageMap<_GeneratedPrefixForStorageProviderBoostRewardPools<T>, Twox64Concat, u32, RewardPoolHistoryChunk<T>>;
Expand description

Reward Pool history is divided into chunks of size RewardPoolChunkLength. ProviderBoostHistoryLimit is the total number of items, the key is the chunk number.

Storage type is [StorageMap] with key type ChunkIndex and value type RewardPoolHistoryChunk < T >.

Aliased Type§

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