From 4ebe441f0096531bc671e363eacab28ef97aac75 Mon Sep 17 00:00:00 2001 From: chungquantin <56880684+chungquantin@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:57:56 +0700 Subject: [PATCH] fix: update max size for hrmp channel --- runtime/src/configs/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/src/configs/mod.rs b/runtime/src/configs/mod.rs index f7c7f30..82cdd5b 100644 --- a/runtime/src/configs/mod.rs +++ b/runtime/src/configs/mod.rs @@ -244,10 +244,10 @@ impl cumulus_pallet_xcmp_queue::Config for Runtime { type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin; type WeightInfo = (); // Configure based on benchmarking results. type PriceForSiblingDelivery = NoPriceForMessageDelivery; - // Limit the number of messages and signals a HRML channel can have at most + // Limit the number of messages and signals a HRMP channel can have at most type MaxActiveOutboundChannels = ConstU32<128>; - // Limit the number of HRML channels - type MaxPageSize = ConstU32<{ 1 << 16 }>; + // Limit the number of HRMP channels + type MaxPageSize = ConstU32<{ 103 * 1024 }>; } parameter_types! {