referrerpolicy=no-referrer-when-downgrade

PendingRegistrations

Type Alias PendingRegistrations 

Source
pub type PendingRegistrations<T: Config> = CountedStorageMap<_GeneratedPrefixForStoragePendingRegistrations<T>, Blake2_128Concat, ParaId, PendingRegistrationOf<T>>;
Expand description

Registrations waiting on their validation code, by para id.

Counted so Config::MaxPendingRegistrations can be enforced with a single read.

Storage type is [CountedStorageMap] with key type ParaId and value type PendingRegistrationOf < T >.

Aliased Type§

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