git.delta.rocks / unique-network / refs/commits / a560e8db71a2

difftreelog

fix remove v1 from xcm tests

Daniel Shiposha2023-01-26parent: #32b5c84.patch.diff
in: master

2 files changed

modifiedtests/src/xcm/xcmQuartz.test.tsdiffbeforeafterboth
463463
464 await usingKaruraPlaygrounds(karuraUrl, async (helper) => {464 await usingKaruraPlaygrounds(karuraUrl, async (helper) => {
465 const destination = {465 const destination = {
466 V0: {466 V1: {
467 parents: 1,
467 X2: [468 interior: {
468 'Parent',
469 {469 X1: {
470 Parachain: QUARTZ_CHAIN,470 Parachain: QUARTZ_CHAIN,
471 },471 },
472 ],472 },
473 },473 },
474 };474 };
475475
494494
495 itSub('Should connect and send QTZ to Karura', async ({helper}) => {495 itSub('Should connect and send QTZ to Karura', async ({helper}) => {
496 const destination = {496 const destination = {
497 V0: {497 V1: {
498 parents: 1,
498 X2: [499 interior: {
499 'Parent',
500 {500 X1: {
501 Parachain: KARURA_CHAIN,501 Parachain: KARURA_CHAIN,
502 },502 },
503 ],503 },
504 },504 },
505 };505 };
506506
507 const beneficiary = {507 const beneficiary = {
508 V0: {508 V1: {
509 parents: 0,
510 interior: {
509 X1: {511 X1: {
510 AccountId32: {512 AccountId32: {
511 network: 'Any',513 network: 'Any',
512 id: randomAccount.addressRaw,514 id: randomAccount.addressRaw,
513 },515 },
514 },516 },
515 },517 },
518 },
516 };519 };
517520
modifiedtests/src/xcm/xcmUnique.test.tsdiffbeforeafterboth
463463
464 await usingAcalaPlaygrounds(acalaUrl, async (helper) => {464 await usingAcalaPlaygrounds(acalaUrl, async (helper) => {
465 const destination = {465 const destination = {
466 V0: {466 V1: {
467 parents: 1,
467 X2: [468 interior: {
468 'Parent',
469 {469 X1: {
470 Parachain: UNIQUE_CHAIN,470 Parachain: UNIQUE_CHAIN,
471 },471 },
472 ],472 },
473 },473 },
474 };474 };
475475
495 itSub('Should connect and send UNQ to Acala', async ({helper}) => {495 itSub('Should connect and send UNQ to Acala', async ({helper}) => {
496496
497 const destination = {497 const destination = {
498 V0: {498 V1: {
499 parents: 1,
499 X2: [500 interior: {
500 'Parent',
501 {501 X1: {
502 Parachain: ACALA_CHAIN,502 Parachain: ACALA_CHAIN,
503 },503 },
504 ],504 },
505 },505 },
506 };506 };
507507
508 const beneficiary = {508 const beneficiary = {
509 V0: {509 V1: {
510 parents: 0,
511 interior: {
510 X1: {512 X1: {
511 AccountId32: {513 AccountId32: {
512 network: 'Any',514 network: 'Any',
513 id: randomAccount.addressRaw,515 id: randomAccount.addressRaw,
514 },516 },
515 },517 },
516 },518 },
519 },
517 };520 };
518521