From 28cda4b38ebada146e21635bfc397296799b18e9 Mon Sep 17 00:00:00 2001 From: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Date: Thu, 22 Dec 2022 21:15:54 +0100 Subject: [PATCH] remove 9330 migrations from statemint series (#2031) --- parachains/runtimes/assets/statemine/src/lib.rs | 7 +------ parachains/runtimes/assets/statemint/src/lib.rs | 7 +------ parachains/runtimes/assets/westmint/src/lib.rs | 7 +------ 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/parachains/runtimes/assets/statemine/src/lib.rs b/parachains/runtimes/assets/statemine/src/lib.rs index ec0c12df03..7955b4d8b2 100644 --- a/parachains/runtimes/assets/statemine/src/lib.rs +++ b/parachains/runtimes/assets/statemine/src/lib.rs @@ -637,11 +637,6 @@ pub type UncheckedExtrinsic = /// Extrinsic type that has already been checked. pub type CheckedExtrinsic = generic::CheckedExtrinsic; -pub type Migrations = ( - pallet_balances::migration::MigrateToTrackInactive, - pallet_assets::migration::v1::MigrateToV1, -); - /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< Runtime, @@ -649,7 +644,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - Migrations, + pallet_balances::migration::MigrateToTrackInactive, >; #[cfg(feature = "runtime-benchmarks")] diff --git a/parachains/runtimes/assets/statemint/src/lib.rs b/parachains/runtimes/assets/statemint/src/lib.rs index ec0bb61b92..ca3a2163db 100644 --- a/parachains/runtimes/assets/statemint/src/lib.rs +++ b/parachains/runtimes/assets/statemint/src/lib.rs @@ -650,11 +650,6 @@ pub type UncheckedExtrinsic = /// Extrinsic type that has already been checked. pub type CheckedExtrinsic = generic::CheckedExtrinsic; -pub type Migrations = ( - pallet_balances::migration::MigrateToTrackInactive, - pallet_assets::migration::v1::MigrateToV1, -); - /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< Runtime, @@ -662,7 +657,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - Migrations, + pallet_balances::migration::MigrateToTrackInactive, >; #[cfg(feature = "runtime-benchmarks")] diff --git a/parachains/runtimes/assets/westmint/src/lib.rs b/parachains/runtimes/assets/westmint/src/lib.rs index 253fd6bf36..7f5e7b1b7a 100644 --- a/parachains/runtimes/assets/westmint/src/lib.rs +++ b/parachains/runtimes/assets/westmint/src/lib.rs @@ -610,11 +610,6 @@ pub type UncheckedExtrinsic = /// Extrinsic type that has already been checked. pub type CheckedExtrinsic = generic::CheckedExtrinsic; -pub type Migrations = ( - pallet_balances::migration::MigrateToTrackInactive, - pallet_assets::migration::v1::MigrateToV1, -); - /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< Runtime, @@ -622,7 +617,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - Migrations, + pallet_balances::migration::MigrateToTrackInactive, >; #[cfg(feature = "runtime-benchmarks")]