From 6c5dcc40fd7b4c37b7dcb04e9f9aaeb5c74f0072 Mon Sep 17 00:00:00 2001 From: Maurice Dalderup Date: Thu, 1 Aug 2019 20:55:02 +0200 Subject: [PATCH] chore(auth): fix balances not loading --- src/renderer/auth/actions/authActions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/auth/actions/authActions.js b/src/renderer/auth/actions/authActions.js index e45662b40..a070f12d4 100644 --- a/src/renderer/auth/actions/authActions.js +++ b/src/renderer/auth/actions/authActions.js @@ -9,7 +9,7 @@ const authenticate = async ({ account, passphrase }) => { const { encryptedMnemonic } = account; const walletForAccount = await getActiveWalletForAccount(account); - const initializedWallet = Wallet({ + const initializedWallet = await Wallet({ encryptedMnemonic, passphrase, wallet: walletForAccount