Skip to content

Commit

Permalink
wallet-node: fix client cfg parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
nodech authored and tuxcanfly committed Jul 4, 2018
1 parent ef43dad commit 92ebbbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/wallet/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class WalletNode extends Node {
network: this.network,
url: this.config.str('node-url'),
host: this.config.str('node-host'),
port: this.config.str('node-port', this.network.rpcPort),
ssl: this.config.str('node-ssl'),
port: this.config.uint('node-port', this.network.rpcPort),
ssl: this.config.bool('node-ssl'),
apiKey: this.config.str('node-api-key')
});

Expand Down

0 comments on commit 92ebbbd

Please sign in to comment.