@@ -88,7 +88,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
8888 spec_name : create_runtime_str ! ( "jupiter-westend" ) ,
8989 impl_name : create_runtime_str ! ( "patract-jupiter-westend" ) ,
9090 authoring_version : 1 ,
91- spec_version : 2 ,
91+ spec_version : 1 ,
9292 impl_version : 1 ,
9393 apis : RUNTIME_API_VERSIONS ,
9494 transaction_version : 1 ,
@@ -165,7 +165,8 @@ impl pallet_balances::Config for Runtime {
165165}
166166
167167impl pallet_transaction_payment:: Config for Runtime {
168- type OnChargeTransaction = pallet_transaction_payment:: CurrencyAdapter < Balances , ( ) > ;
168+ type OnChargeTransaction =
169+ pallet_transaction_payment:: CurrencyAdapter < Balances , impls:: ToRoot < Self > > ;
169170 type TransactionByteFee = TransactionByteFee ;
170171 type WeightToFee = JupiterWeight2Fee ;
171172 type FeeMultiplierUpdate = impls:: SlowAdjustingFeeUpdate < Self > ;
@@ -352,7 +353,13 @@ impl Config for XcmConfig {
352353 type LocationInverter = LocationInverter < Ancestry > ;
353354 type Barrier = ( ) ;
354355 type Weigher = FixedWeightBounds < UnitWeightCost , Call > ;
355- type Trader = UsingComponents < IdentityFee < Balance > , WestendLocation , AccountId , Balances , ( ) > ;
356+ type Trader = UsingComponents <
357+ IdentityFee < Balance > ,
358+ WestendLocation ,
359+ AccountId ,
360+ Balances ,
361+ impls:: ToRoot < Runtime > ,
362+ > ;
356363 type ResponseHandler = ( ) ; // Don't handle responses for now.
357364}
358365
0 commit comments