From 3c11c554b837fcd75d74b09f69b9753dd8443ddd Mon Sep 17 00:00:00 2001 From: wangjj9219 <183318287@qq.com> Date: Wed, 5 Jul 2023 10:41:20 +0800 Subject: [PATCH] clean migrations of acala runtime --- runtime/acala/src/lib.rs | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/runtime/acala/src/lib.rs b/runtime/acala/src/lib.rs index 8d20b8a89d..923ed74262 100644 --- a/runtime/acala/src/lib.rs +++ b/runtime/acala/src/lib.rs @@ -1858,25 +1858,8 @@ pub type SignedPayload = generic::SignedPayload; /// Extrinsic type that has already been checked. pub type CheckedExtrinsic = generic::CheckedExtrinsic; /// Executive: handles dispatch to the various modules. -pub type Executive = frame_executive::Executive< - Runtime, - Block, - frame_system::ChainContext, - Runtime, - AllPalletsWithSystem, - ( - pallet_balances::migration::MigrateToTrackInactive, - pallet_scheduler::migration::v4::CleanupAgendas, - // "Use 2D weights in XCM v3" - pallet_xcm::migration::v1::MigrateToV1, - orml_unknown_tokens::Migration, - // Note: The following Migrations do not use the StorageVersion feature, must to be removed after the upgrade - // TODO: if Acala runtime has upgraded to 2180, review following migrations and delete these. - module_asset_registry::migrations::MigrateV1MultiLocationToV3, - module_xcm_interface::migrations::MigrateXcmDestWeightAndFee, - module_transaction_pause::migrations::MigrateEvmPrecompile, - ), ->; +pub type Executive = + frame_executive::Executive, Runtime, AllPalletsWithSystem, ()>; #[cfg(feature = "runtime-benchmarks")] #[macro_use]