Skip to content

Commit

Permalink
Merge pull request #455 from braydonf/rpcoption
Browse files Browse the repository at this point in the history
bitcoind: connect option for strict ssl
  • Loading branch information
kleetus committed Jun 13, 2016
2 parents 3713a18 + 3dc6860 commit 4ade31f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/services/bitcoind.js
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,8 @@ Bitcoin.prototype._connectProcess = function(config, callback) {
host: config.rpchost || '127.0.0.1',
port: config.rpcport,
user: config.rpcuser,
pass: config.rpcpassword
pass: config.rpcpassword,
rejectUnauthorized: _.isUndefined(config.rpcstrict) ? true : config.rpcstrict
});

self._loadTipFromNode(node, done);
Expand Down

0 comments on commit 4ade31f

Please sign in to comment.