From 9489b3dce014527a5b741098d487b891d62e549f Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 2 Nov 2016 00:29:59 -0700 Subject: [PATCH] walletdb: drop noScan option. --- lib/node/config.js | 1 - lib/node/fullnode.js | 1 - lib/node/spvnode.js | 1 - 3 files changed, 3 deletions(-) diff --git a/lib/node/config.js b/lib/node/config.js index bc575290..d2c03c25 100644 --- a/lib/node/config.js +++ b/lib/node/config.js @@ -203,7 +203,6 @@ config.parseData = function parseData(data, prefix, dirname) { options.noAuth = bool(data.noauth); // Wallet - options.noScan = bool(data.noscan); options.wipeNoReally = bool(data.wipenoreally); options.data = data; diff --git a/lib/node/fullnode.js b/lib/node/fullnode.js index 8760d1a7..a1de516b 100644 --- a/lib/node/fullnode.js +++ b/lib/node/fullnode.js @@ -148,7 +148,6 @@ function FullNode(options) { witness: this.options.witness, useCheckpoints: this.options.useCheckpoints, maxFiles: this.options.maxFiles, - noScan: this.options.noScan, wipeNoReally: this.options.wipeNoReally, resolution: false, verify: false diff --git a/lib/node/spvnode.js b/lib/node/spvnode.js index aee575ef..be9e34ef 100644 --- a/lib/node/spvnode.js +++ b/lib/node/spvnode.js @@ -88,7 +88,6 @@ function SPVNode(options) { location: this.location('walletdb'), witness: this.options.witness, maxFiles: this.options.maxFiles, - noScan: this.options.noScan, wipeNoReally: this.options.wipeNoReally, resolution: true, verify: true