diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 72c10da9b9..3b32291e12 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -1602,10 +1602,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - ( - pallet_nomination_pools::migration::v2::MigrateToV2, - pallet_staking::migrations::v10::MigrateToV10, - ), + (pallet_staking::migrations::v10::MigrateToV10,), >; /// The payload being signed in the transactions. pub type SignedPayload = generic::SignedPayload; diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index 18a8a809c3..043323bad4 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -1174,10 +1174,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - ( - pallet_nomination_pools::migration::v2::MigrateToV2, - pallet_staking::migrations::v10::MigrateToV10, - ), + (pallet_staking::migrations::v10::MigrateToV10,), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload;