From e86133d6d7d2a3cb80199d5ec872c4a423bbdc52 Mon Sep 17 00:00:00 2001 From: Willian Mitsuda Date: Wed, 10 Aug 2022 05:02:02 -0300 Subject: [PATCH] Remove unused comments --- src/useErigonHooks.ts | 2 -- 1 file changed, 2 deletions(-) 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; };