Skip to content

Commit

Permalink
fix: update max size for hrmp channel
Browse files Browse the repository at this point in the history
  • Loading branch information
chungquantin committed Aug 26, 2024
1 parent 78ef51b commit 4ebe441
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runtime/src/configs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<ParaId>;
// 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! {
Expand Down

0 comments on commit 4ebe441

Please sign in to comment.