Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 78a6903

Browse files
authored
remove collectives migrations (#2103)
1 parent 2b82a35 commit 78a6903

File tree

1 file changed

+3
-7
lines changed
  • parachains/runtimes/collectives/collectives-polkadot/src

1 file changed

+3
-7
lines changed

parachains/runtimes/collectives/collectives-polkadot/src/lib.rs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,9 @@ pub type UncheckedExtrinsic =
550550
generic::UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;
551551
/// Extrinsic type that has already been checked.
552552
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
553+
// All migrations executed on runtime upgrade as a nested tuple of types implementing
554+
// `OnRuntimeUpgrade`. Included migrations must be idempotent.
555+
type Migrations = ();
553556

554557
/// Executive: handles dispatch to the various modules.
555558
pub type Executive = frame_executive::Executive<
@@ -561,13 +564,6 @@ pub type Executive = frame_executive::Executive<
561564
Migrations,
562565
>;
563566

564-
// All migrations executed on runtime upgrade as a nested tuple of types implementing `OnRuntimeUpgrade`.
565-
// Included migrations must be idempotent.
566-
type Migrations = (
567-
pallet_alliance::migration::Migration<Runtime>,
568-
pallet_balances::migration::MigrateToTrackInactive<Runtime, xcm_config::CheckingAccount>,
569-
);
570-
571567
#[cfg(feature = "runtime-benchmarks")]
572568
#[macro_use]
573569
extern crate frame_benchmarking;

0 commit comments

Comments
 (0)