aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-07-29 06:47:22 +0800
committerDan Finlay <dan@danfinlay.com>2016-07-29 06:47:22 +0800
commit6151339840b9d05b170d39c2b2f6c195a93d03c9 (patch)
treed3336e17bd74fcf0c4b6edbc194b28ec37abe644
parentab320d12b495c681008145c74520689a21ad5c29 (diff)
parent0b4124874343ce8bee6a27efa9a8c3b43a47fb2b (diff)
downloadtangerine-wallet-browser-6151339840b9d05b170d39c2b2f6c195a93d03c9.tar.gz
tangerine-wallet-browser-6151339840b9d05b170d39c2b2f6c195a93d03c9.tar.zst
tangerine-wallet-browser-6151339840b9d05b170d39c2b2f6c195a93d03c9.zip
Merge branch 'master' into AddEthClassic
-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