From dede6a5c25298014d6f1823de3ac024f837c7be6 Mon Sep 17 00:00:00 2001 From: Andrey Date: Tue, 27 Nov 2018 15:16:54 +0300 Subject: [PATCH] fix balance --- src/containers/Wallet/EthSend.js | 2 +- src/containers/Wallet/index.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/containers/Wallet/EthSend.js b/src/containers/Wallet/EthSend.js index 24244fe..b1fa621 100644 --- a/src/containers/Wallet/EthSend.js +++ b/src/containers/Wallet/EthSend.js @@ -71,7 +71,7 @@ class EthSend extends Component { export default connect( ({ wallet }) => ({ defaultAccount: wallet.defaultAccount, - defaultAccountBalance: wallet.defaultAccountBalance, + defaultAccountBalance: actions.getDefaultAccountBalance({ wallet }), }), actions, )(EthSend); diff --git a/src/containers/Wallet/index.js b/src/containers/Wallet/index.js index 11a8c4d..f8d1d5c 100644 --- a/src/containers/Wallet/index.js +++ b/src/containers/Wallet/index.js @@ -47,9 +47,9 @@ class Page extends Component { } if (tab === 'eth' && menu === 'send') { - // content = ( - // - // ); + content = ( + + ); } if (tab === 'cyb' && menu === 'accounts') {