From 9e00fc636090f18f71841221f09b0cc104e85cb3 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 7 Nov 2016 23:51:48 -0800 Subject: [PATCH] walletdb: disable witness wallets by default for now. --- lib/node/fullnode.js | 2 +- lib/node/spvnode.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node/fullnode.js b/lib/node/fullnode.js index 445fe3f7..2336a19f 100644 --- a/lib/node/fullnode.js +++ b/lib/node/fullnode.js @@ -145,7 +145,7 @@ function FullNode(options) { client: this, db: this.options.db, location: this.location('walletdb'), - witness: this.options.witness, + witness: false, useCheckpoints: this.options.useCheckpoints, maxFiles: this.options.maxFiles, startHeight: this.options.startHeight, diff --git a/lib/node/spvnode.js b/lib/node/spvnode.js index 7dc33a1a..d1091eb5 100644 --- a/lib/node/spvnode.js +++ b/lib/node/spvnode.js @@ -86,7 +86,7 @@ function SPVNode(options) { client: this, db: this.options.db, location: this.location('walletdb'), - witness: this.options.witness, + witness: false, maxFiles: this.options.maxFiles, startHeight: this.options.startHeight, wipeNoReally: this.options.wipeNoReally,