diff options
Merge pull request #508 from MetaMask/FixAccountSelectionBug
Fix account selection bug
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | app/manifest.json | 2 | ||||
-rw-r--r-- | app/scripts/metamask-controller.js | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f4625e8ec..8aaa8b291 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Current Master +## 2.7.3 2016-07-29 + +- Fix bug where changing an account would not update in a live Dapp. + ## 2.7.2 2016-07-29 - Add Ethereum Classic to provider menu diff --git a/app/manifest.json b/app/manifest.json index a1074178e..fa71742b1 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "MetaMask", "short_name": "Metamask", - "version": "2.7.2", + "version": "2.7.3", "manifest_version": 2, "description": "Ethereum Browser Extension", "icons": { diff --git a/app/scripts/metamask-controller.js b/app/scripts/metamask-controller.js index 4f03ace8f..dd43ac2fc 100644 --- a/app/scripts/metamask-controller.js +++ b/app/scripts/metamask-controller.js @@ -165,6 +165,7 @@ module.exports = class MetamaskController { function configToPublic (state) { return { provider: state.provider, + selectedAddress: state.selectedAccount, } } // dump obj into store |