pub type PendingSuspensions<T: Config> = StorageMap<_GeneratedPrefixForStoragePendingSuspensions<T>, Twox64Concat, RingIndex, BoundedVec<u32, T::MaxRingSize>, ValueQuery>;
Expand description
A map of all rings which currently have pending suspensions and need cleaning, along with their respective number of suspended keys which need to be removed.
Storage type is [StorageMap
] with key type RingIndex
and value type BoundedVec < u32, T :: MaxRingSize >
.
Aliased Type§
struct PendingSuspensions<T: Config>(/* private fields */);