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 > > >.