mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #500 from MetaMask/FixRemoteStoreBug
Fix broken reference to host store.didUpdate
This commit is contained in:
commit
0b41248743
@ -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…
Reference in New Issue
Block a user