Skip to content

Commit

Permalink
fix: remove console
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY committed Aug 30, 2018
1 parent e62f22a commit 875ac8a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/nervos-chain/lib/bundle.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion packages/nervos-chain/lib/utils/patchHexToBytes.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ exports.default = (web3) => {
web3.utils.hexToBytes = new Proxy(web3.utils.hexToBytes, {
apply: (target, _thisArg, argumentsList) => {
let hex = ('' + argumentsList[0] || '').replace(/^0x/, '');
console.log(hex);
if (hex.length % 2) {
hex = '0' + hex;
}
Expand Down

0 comments on commit 875ac8a

Please sign in to comment.