From ab449ab9861834b3738ef9cdc700bcbc412e2756 Mon Sep 17 00:00:00 2001 From: Mara Robin B Date: Thu, 28 Jul 2022 19:32:28 +0200 Subject: [PATCH] Remove already executed calls to nompools MigrateToV2 migration (#5837) --- runtime/kusama/src/lib.rs | 5 +---- runtime/westend/src/lib.rs | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 72c10da9b9ed..3b32291e12c8 100644 --- a/runtime/kusama/src/lib.rs +++ b/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/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 18a8a809c303..043323bad488 100644 --- a/runtime/westend/src/lib.rs +++ b/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;