launchpad-ledger: Remove unused commented code

This commit is contained in:
willclarktech 2020-09-15 12:48:13 +02:00
parent f3f691d134
commit 7414180607
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7

View File

@ -98,16 +98,6 @@ export class LaunchpadLedger {
this.userAgent = navigator.userAgent;
}
// // quickly test connection and compatibility with the LaunchpadLedger device throwing away the connection
// async testDevice(): Promise<LaunchpadLedger> {
// // poll device with low timeout to check if the device is connected
// const secondsTimeout = 3; // a lower value always timeouts
// await this.connect(secondsTimeout);
// this.cosmosApp = null;
// return this;
// }
async connect(timeout = defaultInteractionTimeout): Promise<LaunchpadLedger> {
// assume good connection if connected once
if (this.cosmosApp) {
@ -150,16 +140,6 @@ export class LaunchpadLedger {
return CosmosApp.getBech32FromPK(this.prefix, Buffer.from(pubkeyToUse));
}
// async verifyLedgerAddress(): Promise<void> {
// await this.connect();
// assert(this.cosmosApp, "Cosmos Ledger App is not connected");
// const response = await this.cosmosApp.showAddressAndPubKey(this.hdPath, this.bech32Prefix);
// this.handleLedgerErrors(response, {
// rejectionMessage: "Displayed address was rejected by the user",
// });
// }
async sign(message: Uint8Array): Promise<Uint8Array> {
await this.connect();
assert(this.cosmosApp, "Cosmos Ledger App is not connected");