From 702e37afe8fd844bbc597028218380dcf350d973 Mon Sep 17 00:00:00 2001 From: claravanstaden Date: Mon, 13 Nov 2023 10:23:51 +0200 Subject: [PATCH] revert MessageQueueServiceWeight --- .../runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs b/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs index 41efb7bf8b8e..f22e03246ddb 100644 --- a/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs +++ b/cumulus/parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs @@ -405,7 +405,7 @@ impl pallet_message_queue::Config for Runtime { // The XCMP queue pallet is only ever able to handle the `Sibling(ParaId)` origin: type QueueChangeHandler = NarrowOriginToSibling; type QueuePausedQuery = (NarrowOriginToSibling, EthereumOutboundQueue); - type HeapSize = sp_core::ConstU32<{ 256 * 1024 }>; + type HeapSize = sp_core::ConstU32<{ 64 * 1024 }>; type MaxStale = sp_core::ConstU32<8>; type ServiceWeight = MessageQueueServiceWeight; }