Merge pull request #653 from lukem512/patch-1
Allow SSL connections to bitcoind
This commit is contained in:
commit
100de8a9ba
@ -15,6 +15,7 @@ function RpcClient(opts) {
|
|||||||
this.protocol = (opts.protocol == 'http') ? http : https;
|
this.protocol = (opts.protocol == 'http') ? http : https;
|
||||||
this.batchedCalls = null;
|
this.batchedCalls = null;
|
||||||
this.disableAgent = opts.disableAgent || false;
|
this.disableAgent = opts.disableAgent || false;
|
||||||
|
this.rejectUnauthorized = opts.rejectUnauthorized || false;
|
||||||
}
|
}
|
||||||
|
|
||||||
RpcClient.prototype.batch = function(batchCallback, resultCallback) {
|
RpcClient.prototype.batch = function(batchCallback, resultCallback) {
|
||||||
@ -163,6 +164,7 @@ function rpc(request, callback) {
|
|||||||
path: '/',
|
path: '/',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
port: self.port,
|
port: self.port,
|
||||||
|
rejectUnauthorized: self.rejectUnauthorized,
|
||||||
agent: self.disableAgent ? false : undefined,
|
agent: self.disableAgent ? false : undefined,
|
||||||
};
|
};
|
||||||
if (self.httpOptions) {
|
if (self.httpOptions) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user