@@ -244,7 +244,6 @@ fn xcm_remote_transact_contract() {
244
244
}
245
245
246
246
#[ test]
247
- #[ ignore]
248
247
fn test_async_xcm_contract_call_no_ce ( ) {
249
248
/// All the fees and weights values required for the whole
250
249
/// operation.
@@ -253,14 +252,14 @@ fn test_async_xcm_contract_call_no_ce() {
253
252
/// Max fee for whole XCM operation in foreign chain
254
253
/// This includes fees for sending XCM back to original
255
254
/// chain via Transact(pallet_xcm::send).
256
- pub foreign_base_fee : Asset ,
255
+ pub foreign_base_fee : xcm :: v3 :: MultiAsset , // match smart-contract xcm version
257
256
/// Max weight for operation (remark)
258
257
pub foreign_transact_weight : Weight ,
259
258
/// Max weight for Transact(pallet_xcm::send) operation
260
259
pub foreign_transcat_pallet_xcm : Weight ,
261
260
/// Max fee for the callback operation
262
261
/// send by foreign chain
263
- pub here_callback_base_fee : Asset ,
262
+ pub here_callback_base_fee : xcm :: v3 :: MultiAsset , // match smart-contract xcm version
264
263
/// Max weight for Transact(pallet_contracts::call)
265
264
pub here_callback_transact_weight : Weight ,
266
265
/// Max weight for contract call
@@ -323,13 +322,19 @@ fn test_async_xcm_contract_call_no_ce() {
323
322
2u32 . encode( ) ,
324
323
[ 1u8 , 2u8 , 3u8 ] . to_vec( ) . encode( ) ,
325
324
WeightsAndFees {
326
- foreign_base_fee: ( Here , 100_000_000_000_000_000_000_u128 ) . into( ) ,
325
+ foreign_base_fee: xcm:: v3:: MultiAsset :: from( (
326
+ xcm:: v3:: Junctions :: Here ,
327
+ 100_000_000_000_000_000_000_u128
328
+ ) ) ,
327
329
foreign_transact_weight: GAS_LIMIT ,
328
330
foreign_transcat_pallet_xcm: Weight :: from_parts(
329
331
2_000_000_000_000 ,
330
332
3 * 1024 * 1024
331
333
) ,
332
- here_callback_base_fee: ( Here , 100_000_000_000_000_000_u128 ) . into( ) ,
334
+ here_callback_base_fee: xcm:: v3:: MultiAsset :: from( (
335
+ xcm:: v3:: Junctions :: Here ,
336
+ 100_000_000_000_000_000_u128
337
+ ) ) ,
333
338
here_callback_contract_weight: Weight :: from_parts(
334
339
400_000_000_000 ,
335
340
1024 * 1024 ,
0 commit comments