Remove stray console.log in hardware wallets (#1136).

This commit is contained in:
Richard Moore 2020-11-19 17:24:37 -05:00
parent 2816850716
commit cc63e61f73
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651
2 changed files with 1 additions and 2 deletions

@ -13,7 +13,7 @@ API
import { LedgerSigner } from "@ethersproject/hardware-wallets"; import { LedgerSigner } from "@ethersproject/hardware-wallets";
const signer = new LedgerSigner(provider, type, path); const signer = new LedgerSigner(provider, type, path);
// By default: // By default:
// - in node, type = "usb" // - in node, type = "hid"
// - path is the default Ethereum path (i.e. `m/44'/60'/0'/0/0`) // - path is the default Ethereum path (i.e. `m/44'/60'/0'/0/0`)
``` ```

@ -28,7 +28,6 @@ const hidWrapper = Object.freeze({
} }
return hidCache.then((hid) => { return hidCache.then((hid) => {
console.log(hid, hid.create);
return hid.create() return hid.create()
}); });
} }