Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Sep 6, 2024
1 parent 41183bf commit 8f3fc91
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/coinbase/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ export class Wallet {
* @returns The list of Addresses.
*/
public async listAddresses(): Promise<WalletAddress[]> {
console.log("ID: " + this.getId());
const response = await Coinbase.apiClients.address!.listAddresses(
this.getId()!,
Wallet.MAX_ADDRESSES,
Expand Down Expand Up @@ -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`);
}

Expand Down

0 comments on commit 8f3fc91

Please sign in to comment.