diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | app/scripts/lib/config-manager.js | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e4858e325..86ed3bcca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Master +- Point rpc servers to https endpoints. + ## 1.8.3 2016-05-12 - Bumped web3 to 0.6.0 diff --git a/app/scripts/lib/config-manager.js b/app/scripts/lib/config-manager.js index fd48432b5..3c9326db9 100644 --- a/app/scripts/lib/config-manager.js +++ b/app/scripts/lib/config-manager.js @@ -2,8 +2,8 @@ const Migrator = require('pojo-migrator') const extend = require('xtend') const STORAGE_KEY = 'metamask-config' -const TESTNET_RPC = 'http://morden.infura.io' -const MAINNET_RPC = 'http://mainnet.infura.io/' +const TESTNET_RPC = 'https://morden.infura.io' +const MAINNET_RPC = 'https://mainnet.infura.io/' const migrations = require('./migrations') |