From 5382ecb5b097c15544d08ce7695e8d512f84fe3d Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 19 Nov 2014 15:56:38 -0800 Subject: [PATCH] cleanup blockhash. --- src/bitcoindjs.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index 91a121a6..c81437f4 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -2048,8 +2048,6 @@ async_get_addrtx(uv_work_t *req) { if (txin.scriptSig.ToString() == expected.ToString()) { ctx_list *item = new ctx_list(); item->ctx = ctx; - //uint256 hash(((CMerkleTx)ctx).hashBlock.GetHex()); - //item->blockhash = hash; item->blockhash = cblock.GetHash(); if (data->ctxs == NULL) { data->ctxs = item; @@ -2074,8 +2072,6 @@ async_get_addrtx(uv_work_t *req) { if (data->addr == str_addr) { ctx_list *item = new ctx_list(); item->ctx = ctx; - //uint256 hash(((CMerkleTx)ctx).hashBlock.GetHex()); - //item->blockhash = hash; item->blockhash = cblock.GetHash(); if (data->ctxs == NULL) { data->ctxs = item;