diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-05-12 03:54:19 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-05-12 03:54:19 +0800 |
commit | b430cbd064fa8564e8f8edf7c6f5517a42646504 (patch) | |
tree | 5555e566b75fad78d434e2a7c4dada19f69da860 | |
parent | 39403eb79471e463d9e9467f7dc296fcb715292b (diff) | |
download | tangerine-wallet-browser-b430cbd064fa8564e8f8edf7c6f5517a42646504.tar tangerine-wallet-browser-b430cbd064fa8564e8f8edf7c6f5517a42646504.tar.gz tangerine-wallet-browser-b430cbd064fa8564e8f8edf7c6f5517a42646504.tar.bz2 tangerine-wallet-browser-b430cbd064fa8564e8f8edf7c6f5517a42646504.tar.lz tangerine-wallet-browser-b430cbd064fa8564e8f8edf7c6f5517a42646504.tar.xz tangerine-wallet-browser-b430cbd064fa8564e8f8edf7c6f5517a42646504.tar.zst tangerine-wallet-browser-b430cbd064fa8564e8f8edf7c6f5517a42646504.zip |
Fix send view selected account bug
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | ui/app/send.js | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ce47f7ac..8062b38f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Master +- Fixed bug where send view would not load correctly the first time it was visited per account. + ## 1.8.1 2016-05-10 - Initial usage of scalable blockchain backend. diff --git a/ui/app/send.js b/ui/app/send.js index d34accddc..ff8ef4d65 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -12,7 +12,7 @@ module.exports = connect(mapStateToProps)(SendTransactionScreen) function mapStateToProps(state) { var result = { - address: state.appState.currentView.context, + address: state.metamask.selectedAccount, accounts: state.metamask.accounts, identities: state.metamask.identities, warning: state.appState.warning, |