aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-07-29 04:16:59 +0800
committerGitHub <noreply@github.com>2016-07-29 04:16:59 +0800
commit0b4124874343ce8bee6a27efa9a8c3b43a47fb2b (patch)
tree27556ccbe27df8519aa28a1814cdeb1007978abf
parent910d326dbd6c0ab0db897326328c157a3f30e562 (diff)
parent0aad3216d414538da6834a35d9a1f23f5c78fe81 (diff)
downloadtangerine-wallet-browser-0b4124874343ce8bee6a27efa9a8c3b43a47fb2b.tar.gz
tangerine-wallet-browser-0b4124874343ce8bee6a27efa9a8c3b43a47fb2b.tar.zst
tangerine-wallet-browser-0b4124874343ce8bee6a27efa9a8c3b43a47fb2b.zip
Merge pull request #500 from MetaMask/FixRemoteStoreBug
Fix broken reference to host store.didUpdate
-rw-r--r--CHANGELOG.md2
-rw-r--r--app/scripts/lib/remote-store.js2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a2e3e8209..bc2c564d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## Current Master
+- Fix bug where host store would fail to receive updates.
+
## 2.7.1 2016-07-27
- Fix bug where web3 would sometimes not be injected in time for the application.
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