Report when cant update balance

This commit is contained in:
Steve Klebanoff
2018-11-21 09:43:01 -08:00
parent ffa2f4554b
commit 70c9908249

View File

@@ -78,6 +78,7 @@ export const asyncData = {
const ethBalanceInWei = await web3Wrapper.getBalanceInWeiAsync(address);
dispatch(actions.updateAccountEthBalance({ address, ethBalanceInWei }));
} catch (e) {
errorReporter.report(e);
// leave balance as is
return;
}