Skip to content

Commit

Permalink
remove collectives migrations (#2103) (#2150)
Browse files Browse the repository at this point in the history
Co-authored-by: joe petrowski <[email protected]>
  • Loading branch information
EgorPopelyaev and joepetrowski authored Feb 7, 2023
1 parent b7b0b10 commit 918b7fe
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions parachains/runtimes/collectives/collectives-polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,9 @@ pub type UncheckedExtrinsic =
generic::UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;
/// Extrinsic type that has already been checked.
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
// All migrations executed on runtime upgrade as a nested tuple of types implementing
// `OnRuntimeUpgrade`. Included migrations must be idempotent.
type Migrations = ();

/// Executive: handles dispatch to the various modules.
pub type Executive = frame_executive::Executive<
Expand All @@ -560,13 +563,6 @@ pub type Executive = frame_executive::Executive<
Migrations,
>;

// All migrations executed on runtime upgrade as a nested tuple of types implementing `OnRuntimeUpgrade`.
// Included migrations must be idempotent.
type Migrations = (
pallet_alliance::migration::Migration<Runtime>,
pallet_balances::migration::MigrateToTrackInactive<Runtime, xcm_config::CheckingAccount>,
);

#[cfg(feature = "runtime-benchmarks")]
#[macro_use]
extern crate frame_benchmarking;
Expand Down

0 comments on commit 918b7fe

Please sign in to comment.