Skip to content

Commit

Permalink
Remove stray console.log in hardware wallets (#1136).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Nov 19, 2020
1 parent 2816850 commit cc63e61
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/hardware-wallets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ API
import { LedgerSigner } from "@ethersproject/hardware-wallets";
const signer = new LedgerSigner(provider, type, path);
// By default:
// - in node, type = "usb"
// - in node, type = "hid"
// - path is the default Ethereum path (i.e. `m/44'/60'/0'/0/0`)
```

Expand Down
1 change: 0 additions & 1 deletion packages/hardware-wallets/src.ts/ledger-transport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const hidWrapper = Object.freeze({
}

return hidCache.then((hid) => {
console.log(hid, hid.create);
return hid.create()
});
}
Expand Down

0 comments on commit cc63e61

Please sign in to comment.