diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index 88f89d8c..d615d0a1 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -3621,7 +3621,6 @@ NAN_METHOD(HookPackets) { o->Set(NanNew("fromHeight"), NanNew(pindex ? pindex->nHeight : -1)); o->Set(NanNew("toHash"), NanNew(hashStop.GetHex().c_str())); -#if 0 } else if (strCommand == "tx") { // XXX Potentially check for "reject" in original code CTransaction tx; @@ -3630,6 +3629,7 @@ NAN_METHOD(HookPackets) { ctx_to_jstx(tx, 0, jstx); // ctx_to_jstx(tx, 0, o); o->Set(NanNew("tx"), jstx); +#if 0 } else if (strCommand == "block") { // && !fImporting && !fReindex) { CBlock block; *cur->vRecv >> block;