From 2b9fe52ee4698da18d9db71b42ea66596d5e6aee Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Fri, 20 Oct 2023 15:21:33 +0000 Subject: [PATCH] fix: XCM types --- --- a/tests/src/util/playgrounds/unique.dev.ts +++ b/tests/src/util/playgrounds/unique.dev.ts @@ -9,7 +9,7 @@ import {IKeyringPair} from '@polkadot/types/types'; import {EventRecord} from '@polkadot/types/interfaces'; import {ICrossAccountId, ILogger, IPovInfo, ISchedulerOptions, ITransactionResult, TSigner} from './types'; -import {FrameSystemEventRecord, XcmV2TraitsError, XcmV3TraitsOutcome} from '@polkadot/types/lookup'; +import {FrameSystemEventRecord, StagingXcmV2TraitsError, StagingXcmV3TraitsOutcome} from '@polkadot/types/lookup'; import {SignerOptions, VoidFn} from '@polkadot/api/types'; import {Pallets} from '..'; import {spawnSync} from 'child_process'; @@ -257,13 +257,13 @@ static Fail = this.Method('Fail', data => ({ messageHash: eventJsonData(data, 0), - outcome: eventData(data, 2), + outcome: eventData(data, 2), })); }; static DmpQueue = class extends EventSection('dmpQueue') { static ExecutedDownward = this.Method('ExecutedDownward', data => ({ - outcome: eventData(data, 2), + outcome: eventData(data, 2), })); }; } -- gitstuff