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

Commit 8e92df9

Browse files
gavofyorkjoepetrowski
authored andcommitted
Remove old migrations (#2040)
Co-authored-by: joepetrowski <[email protected]>
1 parent 1ad6279 commit 8e92df9

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

parachains/runtimes/assets/statemine/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,14 +653,16 @@ pub type UncheckedExtrinsic =
653653
/// Extrinsic type that has already been checked.
654654
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
655655

656+
pub type Migrations = ();
657+
656658
/// Executive: handles dispatch to the various modules.
657659
pub type Executive = frame_executive::Executive<
658660
Runtime,
659661
Block,
660662
frame_system::ChainContext<Runtime>,
661663
Runtime,
662664
AllPalletsWithSystem,
663-
pallet_balances::migration::MigrateToTrackInactive<Runtime, xcm_config::CheckingAccount>,
665+
Migrations,
664666
>;
665667

666668
#[cfg(feature = "runtime-benchmarks")]

parachains/runtimes/assets/statemint/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,14 +651,16 @@ pub type UncheckedExtrinsic =
651651
/// Extrinsic type that has already been checked.
652652
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
653653

654+
pub type Migrations = ();
655+
654656
/// Executive: handles dispatch to the various modules.
655657
pub type Executive = frame_executive::Executive<
656658
Runtime,
657659
Block,
658660
frame_system::ChainContext<Runtime>,
659661
Runtime,
660662
AllPalletsWithSystem,
661-
pallet_balances::migration::MigrateToTrackInactive<Runtime, xcm_config::CheckingAccount>,
663+
Migrations,
662664
>;
663665

664666
#[cfg(feature = "runtime-benchmarks")]

parachains/runtimes/assets/westmint/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,14 +662,16 @@ pub type UncheckedExtrinsic =
662662
/// Extrinsic type that has already been checked.
663663
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
664664

665+
pub type Migrations = ();
666+
665667
/// Executive: handles dispatch to the various modules.
666668
pub type Executive = frame_executive::Executive<
667669
Runtime,
668670
Block,
669671
frame_system::ChainContext<Runtime>,
670672
Runtime,
671673
AllPalletsWithSystem,
672-
pallet_balances::migration::MigrateToTrackInactive<Runtime, xcm_config::CheckingAccount>,
674+
Migrations,
673675
>;
674676

675677
#[cfg(feature = "runtime-benchmarks")]

parachains/runtimes/contracts/contracts-rococo/src/lib.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,7 @@ pub type UncheckedExtrinsic =
9797
/// Extrinsic type that has already been checked.
9898
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
9999

100-
pub type Migrations = (
101-
pallet_contracts::Migration<Runtime>,
102-
pallet_balances::migration::MigrateToTrackInactive<Runtime, xcm_config::CheckingAccount>,
103-
);
100+
pub type Migrations = (pallet_contracts::Migration<Runtime>,);
104101

105102
/// Executive: handles dispatch to the various modules.
106103
pub type Executive = frame_executive::Executive<

0 commit comments

Comments
 (0)