Type Alias polkadot_runtime_parachains::hrmp::pallet::HrmpChannelContents
source · pub type HrmpChannelContents<T: Config> = StorageMap<_GeneratedPrefixForStorageHrmpChannelContents<T>, Twox64Concat, HrmpChannelId, Vec<InboundHrmpMessage<BlockNumberFor<T>>>, ValueQuery>;
Expand description
Storage for the messages for each channel.
Invariant: cannot be non-empty if the corresponding channel in HrmpChannels
is None
.
Storage type is [StorageMap
] with key type HrmpChannelId
and value type Vec < InboundHrmpMessage < BlockNumberFor < T > > >
.
Aliased Type§
struct HrmpChannelContents<T: Config>(/* private fields */);