From 21098dd868e897d0d9e5e215debd82c350060984 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 26 Jan 2023 12:49:33 +0000 Subject: [PATCH] Merge pull request #860 from UniqueNetwork/fix/remove-v1-from-xcm-tests Fix/remove v1 from xcm tests --- --- a/tests/src/benchmarks/mintFee/benchmark.ts +++ b/tests/src/benchmarks/mintFee/benchmark.ts @@ -100,7 +100,7 @@ const ethSigner = await helper.eth.createAccountWithBalance(donor, 100n); const ethReceiver = await helper.eth.createAccountWithBalance(donor, 5n); - + let susbtrateCollection: UniqueNFTCollection | null; const createCollectionSubstrateFee = convertToTokens( await helper.arrange.calculcateFee({Substrate: donor.address}, async () => { --- a/tests/src/burnItem.test.ts +++ b/tests/src/burnItem.test.ts @@ -15,18 +15,17 @@ // along with Unique Network. If not, see . import {IKeyringPair} from '@polkadot/types/types'; -import {expect, itSub, Pallets, usingPlaygrounds} from './util'; +import {expect, itSub, usingPlaygrounds} from './util'; describe('integration test: ext. burnItem():', () => { let donor: IKeyringPair; let alice: IKeyringPair; - let bob: IKeyringPair; before(async () => { await usingPlaygrounds(async (helper, privateKey) => { donor = await privateKey({filename: __filename}); - [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor); + [alice] = await helper.arrange.createAccounts([100n], donor); }); }); --- a/tests/src/xcm/xcmQuartz.test.ts +++ b/tests/src/xcm/xcmQuartz.test.ts @@ -463,13 +463,13 @@ await usingKaruraPlaygrounds(karuraUrl, async (helper) => { const destination = { - V0: { - X2: [ - 'Parent', - { + V1: { + parents: 1, + interior: { + X1: { Parachain: QUARTZ_CHAIN, }, - ], + }, }, }; @@ -494,22 +494,25 @@ itSub('Should connect and send QTZ to Karura', async ({helper}) => { const destination = { - V0: { - X2: [ - 'Parent', - { + V1: { + parents: 1, + interior: { + X1: { Parachain: KARURA_CHAIN, }, - ], + }, }, }; const beneficiary = { - V0: { - X1: { - AccountId32: { - network: 'Any', - id: randomAccount.addressRaw, + V1: { + parents: 0, + interior: { + X1: { + AccountId32: { + network: 'Any', + id: randomAccount.addressRaw, + }, }, }, }, --- a/tests/src/xcm/xcmUnique.test.ts +++ b/tests/src/xcm/xcmUnique.test.ts @@ -463,13 +463,13 @@ await usingAcalaPlaygrounds(acalaUrl, async (helper) => { const destination = { - V0: { - X2: [ - 'Parent', - { + V1: { + parents: 1, + interior: { + X1: { Parachain: UNIQUE_CHAIN, }, - ], + }, }, }; @@ -495,22 +495,25 @@ itSub('Should connect and send UNQ to Acala', async ({helper}) => { const destination = { - V0: { - X2: [ - 'Parent', - { + V1: { + parents: 1, + interior: { + X1: { Parachain: ACALA_CHAIN, }, - ], + }, }, }; const beneficiary = { - V0: { - X1: { - AccountId32: { - network: 'Any', - id: randomAccount.addressRaw, + V1: { + parents: 0, + interior: { + X1: { + AccountId32: { + network: 'Any', + id: randomAccount.addressRaw, + }, }, }, }, -- gitstuff