From da82924717171a5ca68ad2da8a8905cf8f145332 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 8 Dec 2014 14:04:27 -0800 Subject: [PATCH] disable txindex for now. --- lib/bitcoind.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/bitcoind.js b/lib/bitcoind.js index aeb81e93..02f21d8e 100644 --- a/lib/bitcoind.js +++ b/lib/bitcoind.js @@ -192,9 +192,9 @@ Bitcoin.prototype.start = function(options, callback) { } }); - if (options.txindex !== false) { - options.txindex = true; - } + //if (options.txindex !== false) { + // options.txindex = true; + //} bitcoindjs.start(options, function(err, status) { self._started = true;