This repository was archived by the owner on Nov 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed
contracts/contracts-rococo/src Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -653,14 +653,16 @@ pub type UncheckedExtrinsic =
653653/// Extrinsic type that has already been checked.
654654pub type CheckedExtrinsic = generic:: CheckedExtrinsic < AccountId , RuntimeCall , SignedExtra > ;
655655
656+ pub type Migrations = ( ) ;
657+
656658/// Executive: handles dispatch to the various modules.
657659pub 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" ) ]
Original file line number Diff line number Diff line change @@ -651,14 +651,16 @@ pub type UncheckedExtrinsic =
651651/// Extrinsic type that has already been checked.
652652pub type CheckedExtrinsic = generic:: CheckedExtrinsic < AccountId , RuntimeCall , SignedExtra > ;
653653
654+ pub type Migrations = ( ) ;
655+
654656/// Executive: handles dispatch to the various modules.
655657pub 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" ) ]
Original file line number Diff line number Diff line change @@ -662,14 +662,16 @@ pub type UncheckedExtrinsic =
662662/// Extrinsic type that has already been checked.
663663pub type CheckedExtrinsic = generic:: CheckedExtrinsic < AccountId , RuntimeCall , SignedExtra > ;
664664
665+ pub type Migrations = ( ) ;
666+
665667/// Executive: handles dispatch to the various modules.
666668pub 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" ) ]
Original file line number Diff line number Diff line change @@ -97,10 +97,7 @@ pub type UncheckedExtrinsic =
9797/// Extrinsic type that has already been checked.
9898pub 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.
106103pub type Executive = frame_executive:: Executive <
You can’t perform that action at this time.
0 commit comments