Browse Source

Merge pull request #379 from kleetus/bug/https

HTTP support of insight
activeAddress
Matias Alejo Garcia 9 years ago
parent
commit
0eb07a197a
  1. 2
      bitcorenode/index.js

2
bitcorenode/index.js

@ -81,7 +81,7 @@ Service.prototype._getConfiguration = function() {
var providerOptions = {
provider: 'insight',
url: 'http://localhost:' + self.node.port,
url: (self.node.https ? 'https://' : 'http://') + 'localhost:' + self.node.port,
apiPrefix: '/insight-api'
};

Loading…
Cancel
Save