walletdb: disable witness wallets by default for now.

This commit is contained in:
Christopher Jeffrey 2016-11-07 23:51:48 -08:00
parent 0825007c3d
commit 9e00fc6360
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
2 changed files with 2 additions and 2 deletions

View File

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

View File

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