remove logging of the message and log the error

feature/default_network_editable
frankiebee 7 years ago
parent a54c26382e
commit 59124eb6fd
  1. 2
      app/scripts/lib/pending-tx-watchers.js

@ -103,7 +103,7 @@ module.exports = class PendingTransactionWatchers extends EventEmitter {
if (!sufficientBalance(txMeta.txParams, balance)) {
const insufficientFundsError = new Error('Insufficient balance during rebroadcast.')
this.emit('txFailed', txMeta.id, insufficientFundsError)
log.error(message)
log.error(insufficientFundsError)
return
}

Loading…
Cancel
Save