Fix send view selected account bug

feature/default_network_editable
Dan Finlay 9 years ago
parent 39403eb794
commit b430cbd064
  1. 2
      CHANGELOG.md
  2. 2
      ui/app/send.js

@ -2,6 +2,8 @@
## Current Master ## 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 ## 1.8.1 2016-05-10
- Initial usage of scalable blockchain backend. - Initial usage of scalable blockchain backend.

@ -12,7 +12,7 @@ module.exports = connect(mapStateToProps)(SendTransactionScreen)
function mapStateToProps(state) { function mapStateToProps(state) {
var result = { var result = {
address: state.appState.currentView.context, address: state.metamask.selectedAccount,
accounts: state.metamask.accounts, accounts: state.metamask.accounts,
identities: state.metamask.identities, identities: state.metamask.identities,
warning: state.appState.warning, warning: state.appState.warning,

Loading…
Cancel
Save