fix: remove console log

This commit is contained in:
Sérgio Salgado 2020-12-24 14:07:12 +00:00 committed by Josh Harvey
parent 2b1fd83a99
commit 7b26eab729

View file

@ -45,7 +45,6 @@ function fetchWallet (settings, cryptoCode) {
const lastBalance = {} const lastBalance = {}
function _balance (settings, cryptoCode) { function _balance (settings, cryptoCode) {
console.log('checking ' + cryptoCode + ' balance')
return fetchWallet(settings, cryptoCode) return fetchWallet(settings, cryptoCode)
.then(r => r.wallet.balance(r.account, cryptoCode)) .then(r => r.wallet.balance(r.account, cryptoCode))
.then(balance => ({ balance, timestamp: Date.now() })) .then(balance => ({ balance, timestamp: Date.now() }))