Skip to content

Commit cc6eb8a

Browse files
committedJul 9, 2024
fix xcm tests
1 parent 5ea5c6a commit cc6eb8a

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed
 

‎tests/ink-contracts/async-xcm-call-no-ce.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@
427427
"fields": [
428428
{
429429
"type": 10,
430-
"typeName": "Location"
430+
"typeName": "MultiLocation"
431431
}
432432
],
433433
"index": 0,
@@ -477,7 +477,7 @@
477477
"xcm",
478478
"v3",
479479
"multilocation",
480-
"Location"
480+
"MultiLocation"
481481
]
482482
}
483483
},

‎tests/xcm-simulator/src/tests/experimental.rs

+10-5
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ fn xcm_remote_transact_contract() {
244244
}
245245

246246
#[test]
247-
#[ignore]
248247
fn test_async_xcm_contract_call_no_ce() {
249248
/// All the fees and weights values required for the whole
250249
/// operation.
@@ -253,14 +252,14 @@ fn test_async_xcm_contract_call_no_ce() {
253252
/// Max fee for whole XCM operation in foreign chain
254253
/// This includes fees for sending XCM back to original
255254
/// 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
257256
/// Max weight for operation (remark)
258257
pub foreign_transact_weight: Weight,
259258
/// Max weight for Transact(pallet_xcm::send) operation
260259
pub foreign_transcat_pallet_xcm: Weight,
261260
/// Max fee for the callback operation
262261
/// 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
264263
/// Max weight for Transact(pallet_contracts::call)
265264
pub here_callback_transact_weight: Weight,
266265
/// Max weight for contract call
@@ -323,13 +322,19 @@ fn test_async_xcm_contract_call_no_ce() {
323322
2u32.encode(),
324323
[1u8, 2u8, 3u8].to_vec().encode(),
325324
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+
)),
327329
foreign_transact_weight: GAS_LIMIT,
328330
foreign_transcat_pallet_xcm: Weight::from_parts(
329331
2_000_000_000_000,
330332
3 * 1024 * 1024
331333
),
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+
)),
333338
here_callback_contract_weight: Weight::from_parts(
334339
400_000_000_000,
335340
1024 * 1024,

0 commit comments

Comments
 (0)