Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Jun 25, 2024
1 parent 7e0251b commit 5aabe52
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion runtime/crab/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
migration::CustomOnRuntimeUpgrade,
(
migration::CustomOnRuntimeUpgrade,
cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4<Runtime>,
),
>;

/// Runtime version.
Expand Down
5 changes: 4 additions & 1 deletion runtime/darwinia/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
migration::CustomOnRuntimeUpgrade,
(
migration::CustomOnRuntimeUpgrade,
cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4<Runtime>,
),
>;

/// Runtime version.
Expand Down
5 changes: 4 additions & 1 deletion runtime/koi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
(migration::CustomOnRuntimeUpgrade, darwinia_staking::migration::v2::MigrateToV2<Runtime>),
(
migration::CustomOnRuntimeUpgrade,
cumulus_pallet_xcmp_queue::migration::v4::MigrationToV4<Runtime>,
),
>;

/// Runtime version.
Expand Down

0 comments on commit 5aabe52

Please sign in to comment.