From 7523bf8bbb10561d4b1ed790d08493a5b9db771c Mon Sep 17 00:00:00 2001 From: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Date: Tue, 17 Jan 2023 15:43:55 +0100 Subject: [PATCH] remove collectives migrations (#2103) --- .../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 a9c3fec8854..80e0b46af1c 100644 --- a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs +++ b/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;