From c62bbf7677fba1f80cae2a9877279fae09b84efe Mon Sep 17 00:00:00 2001 From: Brenner Spear Date: Wed, 16 Nov 2022 14:23:50 -0500 Subject: [PATCH] remove logging from utils so FE can use evm-t/lib/utils --- src/utils/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index 4f27967..7ab602d 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -1,5 +1,5 @@ import { ethAddress, proxyImplementationAddress } from './constants' -import { logWarning } from './logging' +// import { logWarning } from './logging' import { BaseProvider } from '@ethersproject/providers' import { AlchemyProvider, Network } from 'alchemy-sdk' import Bottleneck from 'bottleneck' @@ -229,7 +229,7 @@ export const retryProviderCall = async (providerPromise: Promise): Promise return data } catch (err) { retry-- - logWarning({ thrown_error: err }, `retries left: ${retry}`) + // logWarning({ thrown_error: err }, `retries left: ${retry}`) if (retry === 0) { error = err } else {