diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index c6e3bac29a2f..beb68dff6ab1 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1145,6 +1145,7 @@ impl pallet_message_queue::Config for Runtime { type MessageProcessor = pallet_message_queue::mock_helpers::NoopMessageProcessor; type QueueChangeHandler = ParaInclusion; + type QueuePausedQuery = (); type WeightInfo = weights::pallet_message_queue::WeightInfo; } diff --git a/runtime/parachains/src/mock.rs b/runtime/parachains/src/mock.rs index 2c975f682948..b06a75480662 100644 --- a/runtime/parachains/src/mock.rs +++ b/runtime/parachains/src/mock.rs @@ -329,6 +329,7 @@ impl pallet_message_queue::Config for Test { type WeightInfo = TestMessageQueueWeight; type MessageProcessor = TestProcessMessage; type QueueChangeHandler = ParaInclusion; + type QueuePausedQuery = (); type HeapSize = ConstU32<65536>; type MaxStale = ConstU32<8>; type ServiceWeight = MessageQueueServiceWeight; diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 0cdc6785e746..a4afbc6d66d9 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1161,6 +1161,7 @@ impl pallet_message_queue::Config for Runtime { type MessageProcessor = pallet_message_queue::mock_helpers::NoopMessageProcessor; type QueueChangeHandler = ParaInclusion; + type QueuePausedQuery = (); type WeightInfo = weights::pallet_message_queue::WeightInfo; } diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 833a1bdf4dec..54ab03f0ce5f 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -1076,6 +1076,7 @@ impl pallet_message_queue::Config for Runtime { type MessageProcessor = pallet_message_queue::mock_helpers::NoopMessageProcessor; type QueueChangeHandler = ParaInclusion; + type QueuePausedQuery = (); type WeightInfo = weights::pallet_message_queue::WeightInfo; } diff --git a/xcm/xcm-simulator/example/src/relay_chain.rs b/xcm/xcm-simulator/example/src/relay_chain.rs index 6f64249b40fc..b82e2c9cc306 100644 --- a/xcm/xcm-simulator/example/src/relay_chain.rs +++ b/xcm/xcm-simulator/example/src/relay_chain.rs @@ -279,6 +279,7 @@ impl pallet_message_queue::Config for Runtime { type ServiceWeight = MessageQueueServiceWeight; type MessageProcessor = MessageProcessor; type QueueChangeHandler = (); + type QueuePausedQuery = (); type WeightInfo = (); } diff --git a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs index 75b42e300316..ef1339097f5a 100644 --- a/xcm/xcm-simulator/fuzzer/src/relay_chain.rs +++ b/xcm/xcm-simulator/fuzzer/src/relay_chain.rs @@ -247,6 +247,7 @@ impl pallet_message_queue::Config for Runtime { type MessageProcessor = pallet_message_queue::mock_helpers::NoopMessageProcessor; type QueueChangeHandler = (); + type QueuePausedQuery = (); type WeightInfo = (); }