Skip to content

Commit

Permalink
Pruned tx is requested with /address/Ds... all tx fail to load for th…
Browse files Browse the repository at this point in the history
  • Loading branch information
YSTomar authored and alexlyp committed Nov 15, 2017
1 parent 23d38a0 commit e0920d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/transactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ var getTransaction = function(txid, cb) {

if (!tx || !tx.info) {
console.log('[transactions.js.48]:: TXid %s not found in RPC. CHECK THIS.', txid);
return cb(null, null);
return cb("TX not found", null);
}

return cb(null, tx.info);
Expand Down

0 comments on commit e0920d4

Please sign in to comment.