pub type HrmpOpenChannelRequests<T: Config> = StorageMap<_GeneratedPrefixForStorageHrmpOpenChannelRequests<T>, Twox64Concat, HrmpChannelId, HrmpOpenChannelRequest>;Expand description
The set of pending HRMP open channel requests.
The set is accompanied by a list for iteration.
Invariant:
- There are no channels that exists in list but not in the set and vice versa.
Storage type is [StorageMap] with key type HrmpChannelId and value type HrmpOpenChannelRequest.
Aliased Type§
struct HrmpOpenChannelRequests<T: Config>(/* private fields */);