From 129a8ed3f9caf5da1d921d940e620aec9b581a12 Mon Sep 17 00:00:00 2001 From: Egor_P Date: Tue, 7 Feb 2023 10:50:39 +0100 Subject: [PATCH] remove collectives migrations (#2103) (#2150) 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/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs b/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs index a9c3fec885..80e0b46af1 100644 --- a/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs +++ b/cumulus/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs @@ -549,6 +549,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< @@ -560,13 +563,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;