From 28cc714badfc7cc322cba7cbbf396c299da16227 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 4 Dec 2016 03:25:09 -0800 Subject: [PATCH] node: fix `fast` option. --- lib/node/node.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node/node.js b/lib/node/node.js index 7dd8461f..292b3b59 100644 --- a/lib/node/node.js +++ b/lib/node/node.js @@ -216,7 +216,7 @@ Node.prototype.parseOptions = function parseOptions(options) { if (options.fast) { options.headers = true; options.useCheckpoints = true; - options.coinCache = true; + options.coinCache = 65000000; } if (options.witness == null)