Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix Signer (#4104)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngotchac authored Jan 10, 2017
1 parent 78566cf commit ae76194
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,13 +247,13 @@ class TransactionPendingFormConfirm extends Component {
}
}

function mapStateToProps (initState, initProps) {
const { accounts } = initState.personal;
function mapStateToProps (_, initProps) {
const { address } = initProps;

const account = accounts[address] || {};
return (state) => {
const { accounts } = state.personal;
const account = accounts[address] || {};

return () => {
return { account };
};
}
Expand Down

0 comments on commit ae76194

Please sign in to comment.