Comparing version 0.0.3 to 0.0.4
{ | ||
"name": "bitstore", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "A content-addressable cloud storage web service that uses Bitcoin public key infrastructure for authentication and payment.", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -23,5 +23,5 @@ #!/usr/bin/env node | ||
config.privatekey = nconf.get('privatekey'); | ||
config.host = 'https://bitstore.d.blockai.com'; | ||
config.host = 'https://bitstore.blockai.com'; | ||
if (config.network === 'testnet') { | ||
config.host = 'https://bitstore-test.d.blockai.com'; | ||
config.host = 'https://bitstore-test.blockai.com'; | ||
} | ||
@@ -28,0 +28,0 @@ |
@@ -13,6 +13,6 @@ var debug = require('debug')('bitstore'); | ||
if (options.network === 'testnet') { | ||
options.endpoint = 'https://bitstore-test.d.blockai.com'; | ||
options.endpoint = 'https://bitstore-test.blockai.com'; | ||
} | ||
else { | ||
options.endpoint = 'https://bitstore.d.blockai.com'; | ||
options.endpoint = 'https://bitstore.blockai.com'; | ||
} | ||
@@ -19,0 +19,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
430807