Remove unused comments

This commit is contained in:
Willian Mitsuda 2022-08-10 05:02:02 -03:00
parent a187040c80
commit e86133d6d7
No known key found for this signature in database
1 changed files with 0 additions and 2 deletions

View File

@ -582,7 +582,6 @@ export const prefetchTransactionBySenderAndNonce = (
} }
return getTransactionBySenderAndNonceFetcher(provider)(key); return getTransactionBySenderAndNonceFetcher(provider)(key);
}); });
// }
}; };
export const useTransactionBySenderAndNonce = ( export const useTransactionBySenderAndNonce = (
@ -705,7 +704,6 @@ export const providerFetcher =
const method = key[0]; const method = key[0];
const args = key.slice(1); const args = key.slice(1);
const result = await provider.send(method, args); const result = await provider.send(method, args);
// console.log(`providerFetcher: ${method} ${args} === ${result}`);
return result; return result;
}; };