From 3b8d99250465c2e76dc08c2c5aeabe91cd9a6f09 Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Tue, 11 May 2021 13:11:51 +0530 Subject: [PATCH] 1.0.4 FLOsight Error Resolution Keeping the return as, return next(); --- 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 9f327d31..777f5b35 100644 --- a/lib/services/transaction/index.js +++ b/lib/services/transaction/index.js @@ -312,7 +312,7 @@ TransactionService.prototype._getInputValues = function(tx, options, callback) { log.info('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.'); - return; + return next(); /* FLOsight Error Resolution by RanchiMall 11th May 2021 return next(new 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' +