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 =
550550 generic:: UncheckedExtrinsic < Address , RuntimeCall , Signature , SignedExtra > ;
551551/// Extrinsic type that has already been checked.
552552pub 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.
555558pub 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]
573569extern crate frame_benchmarking;
You can’t perform that action at this time.
0 commit comments