diff --git a/src/useErigonHooks.ts b/src/useErigonHooks.ts index c949481..79745f4 100644 --- a/src/useErigonHooks.ts +++ b/src/useErigonHooks.ts @@ -582,7 +582,6 @@ export const prefetchTransactionBySenderAndNonce = ( } return getTransactionBySenderAndNonceFetcher(provider)(key); }); - // } }; export const useTransactionBySenderAndNonce = ( @@ -705,7 +704,6 @@ export const providerFetcher = const method = key[0]; const args = key.slice(1); const result = await provider.send(method, args); - // console.log(`providerFetcher: ${method} ${args} === ${result}`); return result; };