From 3de86a9b399abbfa84e65c0547fd5cb510b9ce9d Mon Sep 17 00:00:00 2001 From: Nik Ho Date: Thu, 13 Jun 2024 14:03:23 +1200 Subject: [PATCH] lint fix --- packages/x-client/src/utils/stark/starkCurve.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/x-client/src/utils/stark/starkCurve.ts b/packages/x-client/src/utils/stark/starkCurve.ts index 5eb4c95714..f495da5298 100644 --- a/packages/x-client/src/utils/stark/starkCurve.ts +++ b/packages/x-client/src/utils/stark/starkCurve.ts @@ -1,4 +1,5 @@ /* eslint-disable spaced-comment */ +/* eslint-disable no-console */ import { track } from '@imtbl/metrics'; import { Signer } from '@ethersproject/abstract-signer'; import { splitSignature } from '@ethersproject/bytes'; @@ -192,7 +193,6 @@ async function getKeyFromPath( if (!checkIfHashedKeyIsAboveLimit(privateKeySeed)) { return starkPrivateKey; } - // eslint-disable-next-line no-else-return console.log('checkIfHashedKeyIsAboveLimit', true); track('starkCurve', 'checkIfHashedKeyIsAboveLimit', { checkIfHashedKeyIsAboveLimit: true });