Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Yieldable queues for pallet MessageQueue #13424

Merged
merged 15 commits into from
Feb 25, 2023
Prev Previous commit
Next Next commit
fix
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
  • Loading branch information
ggwpez committed Feb 22, 2023
commit 1ceb63b11314ebae4643258b253008c5c4c00267
2 changes: 1 addition & 1 deletion bin/node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ impl pallet_message_queue::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type WeightInfo = ();
/// NOTE: Always set this to `NoopMessageProcessor` for benchmarking.
type MessageProcessor = pallet_message_queue::mock_helpers::NoopMessageProcessor;
type MessageProcessor = pallet_message_queue::mock_helpers::NoopMessageProcessor<()>;
type Size = u32;
type QueueChangeHandler = ();
type HeapSize = ConstU32<{ 64 * 1024 }>;
Expand Down