aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/scripts/lib/remote-store.js2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 94ba2c351..1fd480ec2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@
## Current Master
- Add Ethereum Classic to provider menu
+- Fix bug where host store would fail to receive updates.
## 2.7.1 2016-07-27
diff --git a/app/scripts/lib/remote-store.js b/app/scripts/lib/remote-store.js
index c81d5151c..fbfab7bad 100644
--- a/app/scripts/lib/remote-store.js
+++ b/app/scripts/lib/remote-store.js
@@ -52,7 +52,7 @@ HostStore.prototype.set = function (key, value) {
HostStore.prototype.createStream = function () {
var dnode = Dnode({
- update: this._didUpdate.bind(this),
+ // update: this._didUpdate.bind(this),
})
dnode.on('remote', this._didConnect.bind(this))
return dnode