From 8c250ff538af82999da1a459237a20ceefc72abe Mon Sep 17 00:00:00 2001 From: Max Andreev Date: Wed, 07 Sep 2022 12:16:10 +0000 Subject: [PATCH] Fix tests: ignore ts error --- --- a/tests/src/util/playgrounds/unique.dev.ts +++ b/tests/src/util/playgrounds/unique.dev.ts @@ -270,6 +270,7 @@ return new Promise(async (resolve) => { const unsubscribe = await this.helper.api!.query.parachainSystem.validationData(async (data: any) => { if (data.value.relayParentNumber.toNumber() >= blockNumber) { + // @ts-ignore unsubscribe(); resolve(); } -- gitstuff