Skip to content

Commit

Permalink
Remove spurious console.log from Interface (#2714).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Feb 19, 2022
1 parent 9aac785 commit 4e8f004
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/abi/src.ts/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,7 @@ export class Interface {
errorArgs = this._abiCoder.decode(error.inputs, bytes.slice(4));
errorName = error.name;
errorSignature = error.format();
} catch (error) {
console.log(error);
}
} catch (error) { }
}
break;
}
Expand Down

2 comments on commit 4e8f004

@cte
Copy link

@cte cte commented on 4e8f004 Mar 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙌

@ricmoo
Copy link
Member Author

@ricmoo ricmoo commented on 4e8f004 Mar 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's still a few days from being published, but I wanted to check in a bunch of changes. :)

Please sign in to comment.