From e29bac12b8401f319765a858fd3f6a3a7d849eee Mon Sep 17 00:00:00 2001
From: Dan Finlay <dan@danfinlay.com>
Date: Fri, 13 May 2016 15:29:58 -0700
Subject: [PATCH] Move infura rpcs to https

---
 CHANGELOG.md                      | 2 ++
 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')