From 8f3fc914f919df4514d829407b869e719cbb1f85 Mon Sep 17 00:00:00 2001 From: Rohan Agarwal Date: Fri, 6 Sep 2024 16:27:50 -0400 Subject: [PATCH] Cleanup --- src/coinbase/wallet.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/coinbase/wallet.ts b/src/coinbase/wallet.ts index 50e4ca9f..b6b2a9cd 100644 --- a/src/coinbase/wallet.ts +++ b/src/coinbase/wallet.ts @@ -287,7 +287,6 @@ export class Wallet { * @returns The list of Addresses. */ public async listAddresses(): Promise { - console.log("ID: " + this.getId()); const response = await Coinbase.apiClients.address!.listAddresses( this.getId()!, Wallet.MAX_ADDRESSES, @@ -862,8 +861,6 @@ export class Wallet { const key = this.deriveKey(index); const ethWallet = new ethers.Wallet(convertStringToHex(key.privateKey!)); if (ethWallet.address != addressModel.address_id) { - console.log("ethWallet.address", ethWallet.address); - console.log("addressModel.address_id", addressModel.address_id); throw new Error(`Seed does not match wallet`); }