From 71e9463a2bf3c53d95d1dded2ea2309273438a43 Mon Sep 17 00:00:00 2001 From: nymkappa <1612910616@pm.me> Date: Sat, 16 Aug 2025 20:32:33 +0200 Subject: [PATCH] remove console.log --- backend/src/api/services/wallets.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/api/services/wallets.ts b/backend/src/api/services/wallets.ts index b7f81af92..95e6e488e 100644 --- a/backend/src/api/services/wallets.ts +++ b/backend/src/api/services/wallets.ts @@ -180,7 +180,6 @@ class WalletApi { // update list of treasuries const treasuriesResponse = await axios.get(config.MEMPOOL_SERVICES.API + `/treasuries`); - console.log(treasuriesResponse.data); this.treasuries = treasuriesResponse.data || []; } catch (e) { logger.err(`Error updating active wallets: ${(e instanceof Error ? e.message : e)}`);