From 97bcb6dfe4b482232cef2f2d89b2c447401503c4 Mon Sep 17 00:00:00 2001 From: Mara Robin B <mara@broda.me> Date: Tue, 29 Nov 2022 15:33:24 +0100 Subject: [PATCH] remove executed migrations (0.9.33) (#6364) --- polkadot/runtime/kusama/src/lib.rs | 12 +----------- polkadot/runtime/polkadot/src/lib.rs | 12 +----------- polkadot/runtime/rococo/src/lib.rs | 10 +--------- polkadot/runtime/westend/src/lib.rs | 11 +---------- 4 files changed, 4 insertions(+), 41 deletions(-) diff --git a/polkadot/runtime/kusama/src/lib.rs b/polkadot/runtime/kusama/src/lib.rs index 7ef451e52ea..7ae5f08f8ec 100644 --- a/polkadot/runtime/kusama/src/lib.rs +++ b/polkadot/runtime/kusama/src/lib.rs @@ -1453,17 +1453,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext<Runtime>, Runtime, AllPalletsWithSystem, - ( - // "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729> - pallet_preimage::migration::v1::Migration<Runtime>, - pallet_scheduler::migration::v3::MigrateToV4<Runtime>, - pallet_democracy::migrations::v1::Migration<Runtime>, - pallet_multisig::migrations::v1::MigrateToV1<Runtime>, - // "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091> - parachains_configuration::migration::v3::MigrateToV3<Runtime>, - pallet_election_provider_multi_phase::migrations::v1::MigrateToV1<Runtime>, - pallet_fast_unstake::migrations::v1::MigrateToV1<Runtime>, - ), + (), >; /// The payload being signed in the transactions. pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>; diff --git a/polkadot/runtime/polkadot/src/lib.rs b/polkadot/runtime/polkadot/src/lib.rs index 25b142a13be..5bfb60854db 100644 --- a/polkadot/runtime/polkadot/src/lib.rs +++ b/polkadot/runtime/polkadot/src/lib.rs @@ -1609,17 +1609,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext<Runtime>, Runtime, AllPalletsWithSystem, - ( - // "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729> - pallet_preimage::migration::v1::Migration<Runtime>, - pallet_scheduler::migration::v3::MigrateToV4<Runtime>, - pallet_democracy::migrations::v1::Migration<Runtime>, - pallet_multisig::migrations::v1::MigrateToV1<Runtime>, - // "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091> - parachains_configuration::migration::v3::MigrateToV3<Runtime>, - pallet_election_provider_multi_phase::migrations::v1::MigrateToV1<Runtime>, - pallet_fast_unstake::migrations::v1::MigrateToV1<Runtime>, - ), + (), >; /// The payload being signed in transactions. diff --git a/polkadot/runtime/rococo/src/lib.rs b/polkadot/runtime/rococo/src/lib.rs index b230832b745..647526aedb0 100644 --- a/polkadot/runtime/rococo/src/lib.rs +++ b/polkadot/runtime/rococo/src/lib.rs @@ -1456,15 +1456,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext<Runtime>, Runtime, AllPalletsWithSystem, - ( - // "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729> - pallet_preimage::migration::v1::Migration<Runtime>, - pallet_scheduler::migration::v3::MigrateToV4<Runtime>, - pallet_democracy::migrations::v1::Migration<Runtime>, - pallet_multisig::migrations::v1::MigrateToV1<Runtime>, - // "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091> - parachains_configuration::migration::v3::MigrateToV3<Runtime>, - ), + (), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>; diff --git a/polkadot/runtime/westend/src/lib.rs b/polkadot/runtime/westend/src/lib.rs index a7930ff06ea..e44749fd560 100644 --- a/polkadot/runtime/westend/src/lib.rs +++ b/polkadot/runtime/westend/src/lib.rs @@ -1222,16 +1222,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext<Runtime>, Runtime, AllPalletsWithSystem, - ( - // "Bound uses of call" <https://github.com/paritytech/polkadot/pull/5729> - pallet_preimage::migration::v1::Migration<Runtime>, - pallet_scheduler::migration::v3::MigrateToV4<Runtime>, - pallet_multisig::migrations::v1::MigrateToV1<Runtime>, - // "Properly migrate weights to v2" <https://github.com/paritytech/polkadot/pull/6091> - parachains_configuration::migration::v3::MigrateToV3<Runtime>, - pallet_election_provider_multi_phase::migrations::v1::MigrateToV1<Runtime>, - pallet_fast_unstake::migrations::v1::MigrateToV1<Runtime>, - ), + (), >; /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>; -- GitLab