aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts
diff options
context:
space:
mode:
authorFrankie <frankie.diamond@gmail.com>2018-03-29 03:57:01 +0800
committerGitHub <noreply@github.com>2018-03-29 03:57:01 +0800
commit8766420f19251b95211dd99ff9a45e60cf0177ad (patch)
tree6fabc7b3ba8e4c41de173f035cc19f10d631ca6e /app/scripts
parent06112b3e30165cfb583c7fcf1eee5beaa446726c (diff)
parentc4c459c8d785c9169dd5bc4d1209ebbec6429f33 (diff)
downloadtangerine-wallet-browser-8766420f19251b95211dd99ff9a45e60cf0177ad.tar.gz
tangerine-wallet-browser-8766420f19251b95211dd99ff9a45e60cf0177ad.tar.zst
tangerine-wallet-browser-8766420f19251b95211dd99ff9a45e60cf0177ad.zip
Merge pull request #3777 from MetaMask/etc-fixes
Sentry spam fix and etc fixes
Diffstat (limited to 'app/scripts')
-rw-r--r--app/scripts/controllers/currency.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/controllers/currency.js b/app/scripts/controllers/currency.js
index 25a7a942e..930fc52e8 100644
--- a/app/scripts/controllers/currency.js
+++ b/app/scripts/controllers/currency.js
@@ -52,7 +52,7 @@ class CurrencyController {
this.setConversionDate(Number(parsedResponse.timestamp))
}).catch((err) => {
if (err) {
- console.warn('MetaMask - Failed to query currency conversion.')
+ console.warn(`MetaMask - Failed to query currency conversion:`, currentCurrency, err)
this.setConversionRate(0)
this.setConversionDate('N/A')
}