From 7b26eab7298817f5b7059bc48c9c9d67169169a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20Salgado?= Date: Thu, 24 Dec 2020 14:07:12 +0000 Subject: [PATCH] fix: remove console log --- lib/wallet.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/wallet.js b/lib/wallet.js index 85d018bd..e8a4a06f 100644 --- a/lib/wallet.js +++ b/lib/wallet.js @@ -45,7 +45,6 @@ function fetchWallet (settings, cryptoCode) { const lastBalance = {} function _balance (settings, cryptoCode) { - console.log('checking ' + cryptoCode + ' balance') return fetchWallet(settings, cryptoCode) .then(r => r.wallet.balance(r.account, cryptoCode)) .then(balance => ({ balance, timestamp: Date.now() }))