From 09418fc04c2608b123f36ca80f16df3d2096753b Mon Sep 17 00:00:00 2001 From: Egor_P Date: Tue, 17 Jan 2023 16:39:39 +0100 Subject: [PATCH] remove collectives migrations (#2103) (#2105) Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> --- .../collectives/collectives-polkadot/src/lib.rs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs index 973928a82b2..b34c742eb53 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs +++ b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs @@ -550,6 +550,9 @@ pub type UncheckedExtrinsic = generic::UncheckedExtrinsic; /// Extrinsic type that has already been checked. pub type CheckedExtrinsic = generic::CheckedExtrinsic; +// All migrations executed on runtime upgrade as a nested tuple of types implementing +// `OnRuntimeUpgrade`. Included migrations must be idempotent. +type Migrations = (); /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< @@ -561,13 +564,6 @@ pub type Executive = frame_executive::Executive< Migrations, >; -// All migrations executed on runtime upgrade as a nested tuple of types implementing `OnRuntimeUpgrade`. -// Included migrations must be idempotent. -type Migrations = ( - pallet_alliance::migration::Migration, - pallet_balances::migration::MigrateToTrackInactive, -); - #[cfg(feature = "runtime-benchmarks")] #[macro_use] extern crate frame_benchmarking;