From 79f980f1184ebf26fd82ab2324321e64aa69ea34 Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Mon, 27 Jan 2014 13:17:00 -0300 Subject: [PATCH] little fix: show txid in consolelog when tx not found in rpc --- app/controllers/transactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/transactions.js b/app/controllers/transactions.js index 61c4159..8f944aa 100644 --- a/app/controllers/transactions.js +++ b/app/controllers/transactions.js @@ -44,7 +44,7 @@ var getTransaction = function(txid, cb) { } if (!tx || !tx.info) { -console.log('[transactions.js.48]:: TXid %d not found in RPC. CHECK THIS.', txid); //TODO +console.log('[transactions.js.48]:: TXid %s not found in RPC. CHECK THIS.', tx.txid); //TODO // not check this. no tx.info = { txid: txid,