@@ -967,7 +967,7 @@ impl claims::Config for Runtime {
967967 type VestingSchedule = Vesting ;
968968 type Prefix = Prefix ;
969969 type MoveClaimOrigin = EnsureRoot < AccountId > ;
970- type WeightInfo = weights:: runtime_common_claims :: WeightInfo < Runtime > ;
970+ type WeightInfo = weights:: polkadot_runtime_common_claims :: WeightInfo < Runtime > ;
971971}
972972
973973parameter_types ! {
@@ -1005,7 +1005,7 @@ impl identity_migrator::Config for Runtime {
10051005 type RuntimeEvent = RuntimeEvent ;
10061006 type Reaper = EnsureSigned < AccountId > ;
10071007 type ReapIdentityHandler = impls:: ToParachainIdentityReaper < Runtime , Self :: AccountId > ;
1008- type WeightInfo = weights:: runtime_common_identity_migrator :: WeightInfo < Runtime > ;
1008+ type WeightInfo = weights:: polkadot_runtime_common_identity_migrator :: WeightInfo < Runtime > ;
10091009}
10101010
10111011impl pallet_utility:: Config for Runtime {
@@ -1440,7 +1440,7 @@ impl paras_registrar::Config for Runtime {
14401440 type OnSwap = ( Crowdloan , Slots ) ;
14411441 type ParaDeposit = ParaDeposit ;
14421442 type DataDepositPerByte = DataDepositPerByte ;
1443- type WeightInfo = weights:: runtime_common_paras_registrar :: WeightInfo < Runtime > ;
1443+ type WeightInfo = weights:: polkadot_runtime_common_paras_registrar :: WeightInfo < Runtime > ;
14441444}
14451445
14461446parameter_types ! {
@@ -1455,7 +1455,7 @@ impl slots::Config for Runtime {
14551455 type LeasePeriod = LeasePeriod ;
14561456 type LeaseOffset = ( ) ;
14571457 type ForceOrigin = EitherOf < EnsureRoot < Self :: AccountId > , LeaseAdmin > ;
1458- type WeightInfo = weights:: runtime_common_slots :: WeightInfo < Runtime > ;
1458+ type WeightInfo = weights:: polkadot_runtime_common_slots :: WeightInfo < Runtime > ;
14591459}
14601460
14611461parameter_types ! {
@@ -1476,7 +1476,7 @@ impl crowdloan::Config for Runtime {
14761476 type Registrar = Registrar ;
14771477 type Auctioneer = Auctions ;
14781478 type MaxMemoLength = MaxMemoLength ;
1479- type WeightInfo = weights:: runtime_common_crowdloan :: WeightInfo < Runtime > ;
1479+ type WeightInfo = weights:: polkadot_runtime_common_crowdloan :: WeightInfo < Runtime > ;
14801480}
14811481
14821482parameter_types ! {
@@ -1495,7 +1495,7 @@ impl auctions::Config for Runtime {
14951495 type SampleLength = SampleLength ;
14961496 type Randomness = pallet_babe:: RandomnessFromOneEpochAgo < Runtime > ;
14971497 type InitiateOrigin = EitherOf < EnsureRoot < Self :: AccountId > , AuctionAdmin > ;
1498- type WeightInfo = weights:: runtime_common_auctions :: WeightInfo < Runtime > ;
1498+ type WeightInfo = weights:: polkadot_runtime_common_auctions :: WeightInfo < Runtime > ;
14991499}
15001500
15011501type NisCounterpartInstance = pallet_balances:: Instance2 ;
@@ -1975,7 +1975,7 @@ pub mod migrations {
19751975 ) {
19761976 log:: debug!( target: "runtime" , "Cancelling scheduled auctions failed: {:?}" , err) ;
19771977 }
1978- weights:: runtime_common_auctions :: WeightInfo :: < Runtime > :: cancel_auction ( )
1978+ weights:: polkadot_runtime_common_auctions :: WeightInfo :: < Runtime > :: cancel_auction ( )
19791979 . saturating_add ( weights:: pallet_scheduler:: WeightInfo :: < Runtime > :: cancel_named (
19801980 <Runtime as pallet_scheduler:: Config >:: MaxScheduledPerBlock :: get ( ) ,
19811981 ) )
@@ -2033,8 +2033,6 @@ pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>;
20332033mod benches {
20342034 frame_benchmarking:: define_benchmarks!(
20352035 // Polkadot
2036- // NOTE: Make sure to prefix these with `polkadot_runtime_common::` so
2037- // that the path resolves correctly in the generated file.
20382036 [ polkadot_runtime_common:: auctions, Auctions ]
20392037 [ polkadot_runtime_common:: crowdloan, Crowdloan ]
20402038 [ polkadot_runtime_common:: claims, Claims ]
0 commit comments