From efd2bfb085002c548b46e38fcb32d8bc56593e82 Mon Sep 17 00:00:00 2001 From: Mara Robin B <mara@broda.me> Date: Tue, 27 Sep 2022 13:50:40 +0200 Subject: [PATCH] Remove executed runtime migrations (nompools MigrateToV3, InitiateNominationPools) (#6056) --- polkadot/runtime/kusama/src/lib.rs | 1 - polkadot/runtime/polkadot/src/lib.rs | 2 -- polkadot/runtime/westend/src/lib.rs | 1 - 3 files changed, 4 deletions(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 05e6951b839..0452c92a37f 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -1455,7 +1455,6 @@ pub type Executive = frame_executive::Executive< Runtime, AllPalletsWithSystem, ( - pallet_nomination_pools::migration::v3::MigrateToV3<Runtime>, pallet_staking::migrations::v11::MigrateToV11< Runtime, VoterList, diff --git a/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index fed91496df5..aa32eb59928 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -1537,8 +1537,6 @@ pub type Executive = frame_executive::Executive< Runtime, AllPalletsWithSystem, ( - InitiateNominationPools, - pallet_nomination_pools::migration::v3::MigrateToV3<Runtime>, pallet_staking::migrations::v11::MigrateToV11< Runtime, VoterList, diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index 0d739b6ed02..8f1bf6246d3 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -1200,7 +1200,6 @@ pub type Executive = frame_executive::Executive< VoterList, StakingMigrationV11OldPallet, >, - pallet_nomination_pools::migration::v3::MigrateToV3<Runtime>, pallet_staking::migrations::v12::MigrateToV12<Runtime>, ), >; -- GitLab