Allow SSL connections to bitcoind

This is required as, by default, self-signed certificates are rejected as was commented in #436
This commit is contained in:
Luke 2014-12-02 23:49:17 +00:00
parent 26fb622cbe
commit 0d58557cac

View File

@ -163,6 +163,7 @@ function rpc(request, callback) {
path: '/',
method: 'POST',
port: self.port,
rejectUnauthorized: false,
agent: self.disableAgent ? false : undefined,
};
if (self.httpOptions) {