Type Alias polkadot_runtime_parachains::hrmp::pallet::HrmpChannels
source · pub type HrmpChannels<T: Config> = StorageMap<_GeneratedPrefixForStorageHrmpChannels<T>, Twox64Concat, HrmpChannelId, HrmpChannel>;
Expand description
HRMP channel data associated with each para. Invariant:
- each participant in the channel should satisfy
Paras::is_valid_para(P)
within a session.
Storage type is [StorageMap
] with key type HrmpChannelId
and value type HrmpChannel
.
Aliased Type§
struct HrmpChannels<T: Config>(/* private fields */);