Merge pull request #500 from MetaMask/FixRemoteStoreBug

Fix broken reference to host store.didUpdate
feature/default_network_editable
Dan Finlay 8 years ago committed by GitHub
commit 0b41248743
  1. 2
      CHANGELOG.md
  2. 2
      app/scripts/lib/remote-store.js

@ -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.

@ -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

Loading…
Cancel
Save