From 339aab31edec7484e97671cd43b9df3a714ad6d2 Mon Sep 17 00:00:00 2001 From: Mara Broda Date: Tue, 23 Aug 2022 12:17:38 +0200 Subject: [PATCH 1/2] Clean up MigrateToV10 --- runtime/kusama/src/lib.rs | 2 +- runtime/polkadot/src/lib.rs | 2 +- runtime/westend/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 12b9554c5cff..3584d0363ab2 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1446,7 +1446,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (pallet_staking::migrations::v10::MigrateToV10,), + (), >; /// The payload being signed in the transactions. pub type SignedPayload = generic::SignedPayload; diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 9489df9f403c..9aba5e70e523 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1571,7 +1571,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (pallet_staking::migrations::v10::MigrateToV10, InitiateNominationPools), + (InitiateNominationPools), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload; diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 788aede78092..9d330677b55d 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1160,7 +1160,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (pallet_staking::migrations::v10::MigrateToV10,), + (), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload; From f71bc6a0e99603c1e26e682c66be7abfba7589f8 Mon Sep 17 00:00:00 2001 From: Mara Broda Date: Tue, 23 Aug 2022 14:06:08 +0200 Subject: [PATCH 2/2] fixup --- runtime/polkadot/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index 9aba5e70e523..502c116a7371 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1571,7 +1571,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (InitiateNominationPools), + InitiateNominationPools, >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload;