Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstevens19 committed Jul 27, 2021
1 parent 72b4850 commit 9d36907
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-uniswap-sdk",
"version": "3.3.0",
"version": "3.3.1",
"description": "Simple easy to understand SDK for uniswap which looks over best v2 and v3 to find you the best swap quote",
"main": "dist/cjs/index.js",
"module": "./dist/esm/index.js",
Expand Down
3 changes: 1 addition & 2 deletions src/factories/pair/uniswap-pair.factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1183,8 +1183,7 @@ export class UniswapPairFactory {
if (!this._watchingBlocks) {
this._uniswapPairFactoryContext.ethersProvider.provider.on(
'block',
async (block: number) => {
console.log('block', block);
async () => {
await this.handleNewBlock();
}
);
Expand Down

0 comments on commit 9d36907

Please sign in to comment.