From 80f22f731ff9b915a58cc49f2898a92640552ae2 Mon Sep 17 00:00:00 2001 From: tripathyr Date: Mon, 24 Jan 2022 17:57:48 +0530 Subject: [PATCH] Update index.js --- lib/services/transaction/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/transaction/index.js b/lib/services/transaction/index.js index a9f3af0d..545046f8 100644 --- a/lib/services/transaction/index.js +++ b/lib/services/transaction/index.js @@ -312,7 +312,7 @@ TransactionService.prototype._getInputValues = function(tx, options, callback) { // if not in mempool or tx index, we just don't have it, yet? function(txid, tx, next) { if (!tx) { - return next(new Error('Transaction Service: prev transacion: (' + input.prevout.txid() + ') for tx: ' + + return next(log.error('Transaction Service: prev transacion: (' + input.prevout.txid() + ') for tx: ' + _tx.txid() + ' at input index: ' + outputIndex + ' is missing from the index or not in the memory pool. It could be' + ' that the parent tx has not yet been relayed to us, but will be relayed in the near future.')); }