From b430cbd064fa8564e8f8edf7c6f5517a42646504 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Wed, 11 May 2016 12:54:19 -0700 Subject: Fix send view selected account bug --- ui/app/send.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/app') 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, -- cgit