diff --git a/lib/TransactionDb.js b/lib/TransactionDb.js index ef501150..aa11bc6d 100644 --- a/lib/TransactionDb.js +++ b/lib/TransactionDb.js @@ -192,7 +192,7 @@ TransactionDb.prototype._fillOutpoints = function(txInfo, cb) { async.eachLimit(txInfo.vin, CONCURRENCY, function(i, c_in) { self.fromTxIdN(i.txid, i.vout, function(err, ret) { if (!ret || !ret.addr || !ret.valueSat) { - inf('Could not get TXouts in %s,%d from %s ', i.txid, i.vout, txInfo.txid); + logger.info('Could not get TXouts in %s,%d from %s ', i.txid, i.vout, txInfo.txid); if (ret) i.unconfirmedInput = ret.unconfirmedInput; incompleteInputs = 1; return c_in(); // error not scalated