From 240fc6e5fe1604910b1320b648ee6f54e4eb9e91 Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Mon, 26 Aug 2024 15:55:25 +1200 Subject: [PATCH] remove old migration --- runtime/acala/src/lib.rs | 7 +------ runtime/karura/src/lib.rs | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/runtime/acala/src/lib.rs b/runtime/acala/src/lib.rs index 63363448e..31e126d64 100644 --- a/runtime/acala/src/lib.rs +++ b/runtime/acala/src/lib.rs @@ -1983,13 +1983,8 @@ pub type Executive = frame_executive::Executive< Migrations, >; -parameter_types! { - pub const DmpQueuePalletName: &'static str = "DmpQueue"; -} - #[allow(unused_parens)] -type Migrations = - (frame_support::migrations::RemovePallet::DbWeight>,); +type Migrations = (); #[cfg(feature = "runtime-benchmarks")] #[macro_use] diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs index bcdad076b..a568891bd 100644 --- a/runtime/karura/src/lib.rs +++ b/runtime/karura/src/lib.rs @@ -2015,13 +2015,8 @@ pub type Executive = frame_executive::Executive< Migrations, >; -parameter_types! { - pub const DmpQueuePalletName: &'static str = "DmpQueue"; -} - #[allow(unused_parens)] -type Migrations = - (frame_support::migrations::RemovePallet::DbWeight>,); +type Migrations = (); #[cfg(feature = "runtime-benchmarks")] #[macro_use]