diff --git a/runtime/astar/src/lib.rs b/runtime/astar/src/lib.rs index 778c471949..0049124851 100644 --- a/runtime/astar/src/lib.rs +++ b/runtime/astar/src/lib.rs @@ -289,7 +289,7 @@ impl frame_system::Config for Runtime { type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode; type MaxConsumers = frame_support::traits::ConstU32<16>; type SingleBlockMigrations = (); - type MultiBlockMigrator = Migrations; + type MultiBlockMigrator = MultiBlockMigrations; type PreInherents = (); type PostInherents = (); type PostTransactions = (); @@ -1257,8 +1257,7 @@ construct_runtime!( Sudo: pallet_sudo = 99, - // Multi-block migrator - Migrations: pallet_migrations = 120, + MultiBlockMigrations: pallet_migrations = 120, } ); @@ -1429,6 +1428,7 @@ mod benches { [pallet_timestamp, Timestamp] [pallet_dapp_staking_v3, DappStaking] [pallet_inflation, Inflation] + [pallet_migrations, MultiBlockMigrations] [pallet_xc_asset_config, XcAssetConfig] [pallet_collator_selection, CollatorSelection] [pallet_xcm, PalletXcmExtrinsicsBenchmark::] diff --git a/runtime/shibuya/src/lib.rs b/runtime/shibuya/src/lib.rs index ddb60c8996..85ee7a4004 100644 --- a/runtime/shibuya/src/lib.rs +++ b/runtime/shibuya/src/lib.rs @@ -326,7 +326,7 @@ impl frame_system::Config for Runtime { type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode; type MaxConsumers = frame_support::traits::ConstU32<16>; type SingleBlockMigrations = (); - type MultiBlockMigrator = Migrations; + type MultiBlockMigrator = MultiBlockMigrations; type PreInherents = (); type PostInherents = (); type PostTransactions = (); @@ -1598,8 +1598,7 @@ construct_runtime!( CommunityTreasury: pallet_treasury:: = 108, CollectiveProxy: pallet_collective_proxy = 109, - // Multi-block migrator - Migrations: pallet_migrations = 120, + MultiBlockMigrations: pallet_migrations = 120, } ); @@ -1770,6 +1769,7 @@ mod benches { [pallet_timestamp, Timestamp] [pallet_dapp_staking_v3, DappStaking] [pallet_inflation, Inflation] + [pallet_migrations, MultiBlockMigrations] [pallet_xc_asset_config, XcAssetConfig] [pallet_collator_selection, CollatorSelection] [pallet_xcm, PalletXcmExtrinsicsBenchmark::] diff --git a/runtime/shiden/src/lib.rs b/runtime/shiden/src/lib.rs index 125f106141..3267634110 100644 --- a/runtime/shiden/src/lib.rs +++ b/runtime/shiden/src/lib.rs @@ -291,7 +291,7 @@ impl frame_system::Config for Runtime { type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode; type MaxConsumers = frame_support::traits::ConstU32<16>; type SingleBlockMigrations = (); - type MultiBlockMigrator = Migrations; + type MultiBlockMigrator = MultiBlockMigrations; type PreInherents = (); type PostInherents = (); type PostTransactions = (); @@ -1257,8 +1257,7 @@ construct_runtime!( Sudo: pallet_sudo = 99, - // Multi-block migrator - Migrations: pallet_migrations = 120, + MultiBlockMigrations: pallet_migrations = 120, } ); @@ -1429,6 +1428,7 @@ mod benches { [pallet_timestamp, Timestamp] [pallet_dapp_staking_v3, DappStaking] [pallet_inflation, Inflation] + [pallet_migrations, MultiBlockMigrations] [pallet_xc_asset_config, XcAssetConfig] [pallet_collator_selection, CollatorSelection] [pallet_xcm, PalletXcmExtrinsicsBenchmark::]