Skip to content

Commit

Permalink
apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzamontiel committed Sep 26, 2024
1 parent f19c9ef commit 6daef57
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runtime/moonbase/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ impl cumulus_pallet_xcmp_queue::Config for Runtime {
type PriceForSiblingDelivery = polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery<
cumulus_primitives_core::ParaId,
>;
type MaxActiveOutboundChannels = ConstU32<128>;
type MaxActiveOutboundChannels = MessageQueueHeapSize;
// Most on-chain HRMP channels are configured to use 102400 bytes of max message size, so we
// need to set the page size larger than that until we reduce the channel size on-chain.
type MaxPageSize = ConstU32<{ 103 * 1024 }>;
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonbeam/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ impl cumulus_pallet_xcmp_queue::Config for Runtime {
type PriceForSiblingDelivery = polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery<
cumulus_primitives_core::ParaId,
>;
type MaxActiveOutboundChannels = ConstU32<128>;
type MaxActiveOutboundChannels = MessageQueueHeapSize;
// Most on-chain HRMP channels are configured to use 102400 bytes of max message size, so we
// need to set the page size larger than that until we reduce the channel size on-chain.
type MaxPageSize = ConstU32<{ 103 * 1024 }>;
Expand Down
2 changes: 1 addition & 1 deletion runtime/moonriver/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ impl cumulus_pallet_xcmp_queue::Config for Runtime {
type PriceForSiblingDelivery = polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery<
cumulus_primitives_core::ParaId,
>;
type MaxActiveOutboundChannels = ConstU32<128>;
type MaxActiveOutboundChannels = MessageQueueHeapSize;
// Most on-chain HRMP channels are configured to use 102400 bytes of max message size, so we
// need to set the page size larger than that until we reduce the channel size on-chain.
type MaxPageSize = ConstU32<{ 103 * 1024 }>;
Expand Down

0 comments on commit 6daef57

Please sign in to comment.