From ef32d1e78f938c9e66797ebd5f2b3d35c520d8ea Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Tue, 10 Sep 2019 15:27:03 +0400 Subject: [PATCH] fix error messages --- src/routes/safe/store/actions/fetchEtherBalance.js | 2 +- src/routes/safe/store/actions/fetchTokenBalances.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/safe/store/actions/fetchEtherBalance.js b/src/routes/safe/store/actions/fetchEtherBalance.js index 23f32b44..47c4a6d5 100644 --- a/src/routes/safe/store/actions/fetchEtherBalance.js +++ b/src/routes/safe/store/actions/fetchEtherBalance.js @@ -11,7 +11,7 @@ const fetchEtherBalance = (safeAddress: string) => async (dispatch: ReduxDispatc dispatch(updateSafe({ address: safeAddress, ethBalance })) } catch (err) { // eslint-disable-next-line - console.error('Error while loading active tokens from storage:', err) + console.error('Error when fetching Ether balance:', err) } } diff --git a/src/routes/safe/store/actions/fetchTokenBalances.js b/src/routes/safe/store/actions/fetchTokenBalances.js index d9dbcd91..26501fbe 100644 --- a/src/routes/safe/store/actions/fetchTokenBalances.js +++ b/src/routes/safe/store/actions/fetchTokenBalances.js @@ -45,7 +45,7 @@ const fetchTokenBalances = (safeAddress: string, tokens: List) => async ( dispatch(updateSafe({ address: safeAddress, balances: List(withBalances) })) } catch (err) { // eslint-disable-next-line - console.error('Error while loading active tokens from storage:', err) + console.error('Error when fetching token balances:', err) } }