From a9c36fa052d60ecf3d13609d99a435adc93a9d2b Mon Sep 17 00:00:00 2001 From: aaronbarnardsound Date: Mon, 18 Dec 2023 06:41:38 +1100 Subject: [PATCH] Remove logs --- src/lib/wallets/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/wallets/index.ts b/src/lib/wallets/index.ts index 5e4a6964..79de42f7 100644 --- a/src/lib/wallets/index.ts +++ b/src/lib/wallets/index.ts @@ -112,7 +112,6 @@ export const connect = async (wallet: Wallet): Promise => { // if not create one if (!currentConnection) { - console.log('getting connection:', wallet.label) connection = getConnection(wallet) } else { connection = currentConnection @@ -123,7 +122,6 @@ export const connect = async (wallet: Wallet): Promise => { } connection.connect && (await connection.connect()) - console.log('successfully connected:', wallet.label) if (connection.info.id) { await db.wallets.update(wallet.id, { nodeId: connection.info.id })