From 5aabe5224303176fd8664b3c84c6572658101840 Mon Sep 17 00:00:00 2001 From: Xavier Lau Date: Tue, 25 Jun 2024 16:44:07 +0800 Subject: [PATCH] paritytech/polkadot-sdk#2142 --- runtime/crab/src/lib.rs | 5 ++++- runtime/darwinia/src/lib.rs | 5 ++++- runtime/koi/src/lib.rs | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/runtime/crab/src/lib.rs b/runtime/crab/src/lib.rs index d4f142f43..1d426acc3 100644 --- a/runtime/crab/src/lib.rs +++ b/runtime/crab/src/lib.rs @@ -65,7 +65,10 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - migration::CustomOnRuntimeUpgrade, + ( + migration::CustomOnRuntimeUpgrade, + cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4, + ), >; /// Runtime version. diff --git a/runtime/darwinia/src/lib.rs b/runtime/darwinia/src/lib.rs index 7fc726db3..60fdbf3f0 100644 --- a/runtime/darwinia/src/lib.rs +++ b/runtime/darwinia/src/lib.rs @@ -65,7 +65,10 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - migration::CustomOnRuntimeUpgrade, + ( + migration::CustomOnRuntimeUpgrade, + cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4, + ), >; /// Runtime version. diff --git a/runtime/koi/src/lib.rs b/runtime/koi/src/lib.rs index 1a9df8525..331009b25 100644 --- a/runtime/koi/src/lib.rs +++ b/runtime/koi/src/lib.rs @@ -66,7 +66,10 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (migration::CustomOnRuntimeUpgrade, darwinia_staking::migration::v2::MigrateToV2), + ( + migration::CustomOnRuntimeUpgrade, + cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4, + ), >; /// Runtime version.