This repository was archived by the owner on Nov 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
parachains/runtimes/collectives/collectives-polkadot/src Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -550,6 +550,9 @@ pub type UncheckedExtrinsic =
550
550
generic:: UncheckedExtrinsic < Address , RuntimeCall , Signature , SignedExtra > ;
551
551
/// Extrinsic type that has already been checked.
552
552
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 = ( ) ;
553
556
554
557
/// Executive: handles dispatch to the various modules.
555
558
pub type Executive = frame_executive:: Executive <
@@ -561,13 +564,6 @@ pub type Executive = frame_executive::Executive<
561
564
Migrations ,
562
565
> ;
563
566
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
-
571
567
#[ cfg( feature = "runtime-benchmarks" ) ]
572
568
#[ macro_use]
573
569
extern crate frame_benchmarking;
You can’t perform that action at this time.
0 commit comments