Merge pull request #508 from MetaMask/FixAccountSelectionBug

Fix account selection bug
feature/default_network_editable
Dan Finlay 8 years ago committed by GitHub
commit 5b76f6f8ae
  1. 4
      CHANGELOG.md
  2. 2
      app/manifest.json
  3. 1
      app/scripts/metamask-controller.js

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

@ -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": {

@ -165,6 +165,7 @@ module.exports = class MetamaskController {
function configToPublic (state) {
return {
provider: state.provider,
selectedAddress: state.selectedAccount,
}
}
// dump obj into store

Loading…
Cancel
Save