pub type SubPoolsStorage<T: Config> = CountedStorageMap<_GeneratedPrefixForStorageSubPoolsStorage<T>, Twox64Concat, PoolId, SubPools<T>>;
Expand description

Groups of unbonding pools. Each group of unbonding pools belongs to a bonded pool, hence the name sub-pools. Keyed by the bonded pools account.

Storage type is CountedStorageMap with key type PoolId and value type SubPools < T >.