fixed glitch in message queue

This commit is contained in:
Nikita Khateev
2023-12-13 16:18:21 +04:00
parent dddee5b02c
commit 91b527da37
@@ -2,7 +2,7 @@
:highlightjs-languages: rust
:github-icon: pass:[<svg class="icon"><use href="#github-icon"/></svg>]
= pallet_message_queue link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.3.0/substrate/frame/message-queue/src/lib.rs[{github-icon},role=heading-link]
= pallet_message_queue
Branch/Release: `release-polkadot-v{1.3.0}`
@@ -10,7 +10,7 @@ Branch/Release: `release-polkadot-v{1.3.0}`
Flexible FRAME pallet for implementing message queues. This pallet can also initiate message processing using the `MessageProcessor` (see `Config`).
== Config
== Config link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.3.0/substrate/frame/message-queue/src/lib.rs#L445[{github-icon},role=heading-link]
* Pallet-specific configs:
** `MessageProcessor` -- Processor for messages
** `Size` -- Page/heap size type.
@@ -23,7 +23,7 @@ Flexible FRAME pallet for implementing message queues. This pallet can also init
** `RuntimeEvent` -- The overarching event type.
** `WeightInfo` -- Weight information for extrinsics in this pallet.
== Dispatchables
== Dispatchables link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.3.0/substrate/frame/message-queue/src/lib.rs#L594[{github-icon},role=heading-link]
[.contract-item]
[[execute_overweight]]