walletdb: drop noScan option.

This commit is contained in:
Christopher Jeffrey 2016-11-02 00:29:59 -07:00
parent 69242f5228
commit 9489b3dce0
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
3 changed files with 0 additions and 3 deletions

View File

@ -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;

View File

@ -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

View File

@ -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