fix error messages

This commit is contained in:
Mikhail Mikheev 2019-09-10 15:27:03 +04:00
parent f8db1e1e9a
commit ef32d1e78f
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ const fetchEtherBalance = (safeAddress: string) => async (dispatch: ReduxDispatc
dispatch(updateSafe({ address: safeAddress, ethBalance })) dispatch(updateSafe({ address: safeAddress, ethBalance }))
} catch (err) { } catch (err) {
// eslint-disable-next-line // eslint-disable-next-line
console.error('Error while loading active tokens from storage:', err) console.error('Error when fetching Ether balance:', err)
} }
} }

View File

@ -45,7 +45,7 @@ const fetchTokenBalances = (safeAddress: string, tokens: List<Token>) => async (
dispatch(updateSafe({ address: safeAddress, balances: List(withBalances) })) dispatch(updateSafe({ address: safeAddress, balances: List(withBalances) }))
} catch (err) { } catch (err) {
// eslint-disable-next-line // eslint-disable-next-line
console.error('Error while loading active tokens from storage:', err) console.error('Error when fetching token balances:', err)
} }
} }