spvnode: fix config inconsistency. fixes #195.

This commit is contained in:
Christopher Jeffrey 2017-04-30 07:28:16 -07:00
parent 12d3ee6f95
commit d3cfad0c64
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -87,8 +87,8 @@ function SPVNode(options) {
ssl: this.config.bool('ssl'),
keyFile: this.config.path('ssl-key'),
certFile: this.config.path('ssl-cert'),
host: this.config.str('host'),
port: this.config.num('port'),
host: this.config.str('http-host'),
port: this.config.num('http-port'),
apiKey: this.config.str('api-key'),
noAuth: this.config.bool('no-auth')
});