Skip to content
Snippets Groups Projects
Unverified Commit 8d62c13b authored by Oliver Tale-Yazdi's avatar Oliver Tale-Yazdi
Browse files

Deprecate dmp-queue pallet


Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
parent 59d7e037
Branches
No related merge requests found
Pipeline #475072 waiting for manual action with stages
in 2 minutes and 52 seconds
......@@ -21,6 +21,7 @@
//! from the runtime once `Completed` was emitted.
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(deprecated)] // The pallet itself is deprecated.
use migration::*;
pub use pallet::*;
......@@ -38,6 +39,9 @@ pub type MaxDmpMessageLenOf<T> =
<<T as Config>::DmpSink as frame_support::traits::HandleMessage>::MaxMessageLen;
#[frame_support::pallet]
#[deprecated(
note = "`cumulus-pallet-dmp-queue` will be removed after November 2024. It can be removed once its lazy migration completed. See <https://github.com/paritytech/polkadot-sdk/pull/1246>."
)]
pub mod pallet {
use super::*;
use frame_support::{pallet_prelude::*, traits::HandleMessage, weights::WeightMeter};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment