From 110c089c88e6c72e3197e3ad6b0a7657864f99ab Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 9 Dec 2014 14:21:45 -0800 Subject: [PATCH] remove GetTransaction call. --- src/bitcoindjs.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index 065c56c4..696b3376 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -5908,7 +5908,6 @@ ctx_to_jstx(const CTransaction& ctx, uint256 blockhash, Local jstx) { Local jsprev = NanNew(); CTransaction prev_tx; if (get_tx(txin.prevout.hash, blockhash, prev_tx)) { - //if (GetTransaction(txin.prevout.hash, prev_tx, blockhash, true)) { CTxDestination from; CTxOut prev_out = prev_tx.vout[txin.prevout.n]; ExtractDestination(prev_out.scriptPubKey, from);