Type Alias polkadot_runtime_parachains::hrmp::pallet::HrmpAcceptedChannelRequestCount
source · pub type HrmpAcceptedChannelRequestCount<T: Config> = StorageMap<_GeneratedPrefixForStorageHrmpAcceptedChannelRequestCount<T>, Twox64Concat, Id, u32, ValueQuery>;
Expand description
This mapping tracks how many open channel requests were accepted by a given recipient para.
Invariant: HrmpOpenChannelRequests
should contain the same number of items (_, X)
with
confirmed
set to true, as the number of HrmpAcceptedChannelRequestCount
for X
.
Storage type is [StorageMap
] with key type ParaId
and value type u32
.
Aliased Type§
struct HrmpAcceptedChannelRequestCount<T: Config>(/* private fields */);