Skip to content

Commit

Permalink
remove logging from utils so FE can use evm-t/lib/utils
Browse files Browse the repository at this point in the history
  • Loading branch information
BrennerSpear committed Nov 16, 2022
1 parent cd4b16c commit c62bbf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -229,7 +229,7 @@ export const retryProviderCall = async <T>(providerPromise: Promise<T>): 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 {
Expand Down

0 comments on commit c62bbf7

Please sign in to comment.