diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 50160837fd38..c1b55dec36c0 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1485,15 +1485,7 @@ impl Get<&'static str> for StakingMigrationV11OldPallet { /// All migrations that will run on the next runtime upgrade. /// /// Should be cleared after every release. -pub type Migrations = ( - // "Use 2D weights in XCM v3" - pallet_xcm::migration::v1::MigrateToV1, - parachains_ump::migration::v1::MigrateToV1, - // Remove stale entries in the set id -> session index storage map (after - // this release they will be properly pruned after the bonding duration has - // elapsed) - pallet_grandpa::migrations::CleanupSetIdSessionMap, -); +pub type Migrations = (); /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic = diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 4269316c62e6..b7b6bd34a7f1 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1606,15 +1606,7 @@ impl Get<&'static str> for StakingMigrationV11OldPallet { /// All migrations that will run on the next runtime upgrade. /// /// Should be cleared after every release. -pub type Migrations = ( - // "Use 2D weights in XCM v3" - pallet_xcm::migration::v1::MigrateToV1, - parachains_ump::migration::v1::MigrateToV1, - // Remove stale entries in the set id -> session index storage map (after - // this release they will be properly pruned after the bonding duration has - // elapsed) - pallet_grandpa::migrations::CleanupSetIdSessionMap, -); +pub type Migrations = (); /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic = diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 137d2abcfd59..5f9de80e3301 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -1509,15 +1509,7 @@ pub type UncheckedExtrinsic = /// All migrations that will run on the next runtime upgrade. /// /// Should be cleared after every release. -pub type Migrations = ( - // "Use 2D weights in XCM v3" - pallet_xcm::migration::v1::MigrateToV1, - parachains_ump::migration::v1::MigrateToV1, - // Remove stale entries in the set id -> session index storage map (after - // this release they will be properly pruned after the bonding duration has - // elapsed) - pallet_grandpa::migrations::CleanupSetIdSessionMap, -); +pub type Migrations = (); /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index dc2a67cb1494..9dc59d80dcd9 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1226,16 +1226,7 @@ impl Get<&'static str> for StakingMigrationV11OldPallet { /// All migrations that will run on the next runtime upgrade. /// /// Should be cleared after every release. -pub type Migrations = ( - clean_state_migration::CleanMigrate, - // "Use 2D weights in XCM v3" - pallet_xcm::migration::v1::MigrateToV1, - parachains_ump::migration::v1::MigrateToV1, - // Remove stale entries in the set id -> session index storage map (after - // this release they will be properly pruned after the bonding duration has - // elapsed) - pallet_grandpa::migrations::CleanupSetIdSessionMap, -); +pub type Migrations = (clean_state_migration::CleanMigrate,); /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic =