From a6f02a9dc36b6a1e960a0e46a2d55a23ce6b74c7 Mon Sep 17 00:00:00 2001 From: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Date: Fri, 20 May 2022 12:20:54 +0100 Subject: [PATCH] companion to substrate 11411 (#5524) * companion to substrate 11411 * update substrate * fmt * fmt Co-authored-by: Shawn Tabrizi --- polkadot/runtime/kusama/src/lib.rs | 1 + polkadot/runtime/westend/src/lib.rs | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 36e054451c..905e2d1cdc 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -1628,6 +1628,7 @@ pub type Executive = frame_executive::Executive< RenameBagsListToVoterList, pallet_bags_list::migrations::AddScore, InitiatePoolConfigs, + pallet_nomination_pools::migration::v1::MigrateToV1, ), >; /// The payload being signed in the transactions. diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index 02728b9ca7..68a8f0bba0 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -1161,7 +1161,11 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (RenameBagsListToVoterList, pallet_bags_list::migrations::AddScore), + ( + RenameBagsListToVoterList, + pallet_bags_list::migrations::AddScore, + pallet_nomination_pools::migration::v1::MigrateToV1, + ), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload;