From efec93ac57df36d1df2fc472966dcb715f83a94b Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 22 Sep 2014 12:42:56 -0700 Subject: [PATCH] remove debug. --- src/bitcoindjs.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index 1a5e30af..46935542 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -912,13 +912,8 @@ NAN_METHOD(GetTx) { blockHash = "0x" + blockHash; } - printf("tx: %s\n", txHash.c_str()); - printf("block: %s\n", blockHash.c_str()); - uint256 hash(txHash); uint256 hashBlock(blockHash); - // uint256 hashBlock = 0; - // if (noBlockHash) hashBlock = 0; CTransaction tx; if (!GetTransaction(hash, tx, hashBlock, noBlockHash ? true : false)) {