aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/helpers
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-07-05 21:04:16 +0800
committerWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-07-05 21:24:51 +0800
commit783559f94ef7370d2fef88327c500fbe826ac0b0 (patch)
tree569a9f51ec6f2414c3e3e87116c305fabf1f602c /ui/app/helpers
parent0116ea9b95c5a9ab35d23e814a1783ef2bc11c25 (diff)
downloadtangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar.gz
tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar.zst
tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.zip
Don't update token balances after tracker is stopped
Diffstat (limited to 'ui/app/helpers')
-rw-r--r--ui/app/helpers/with-token-tracker.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/app/helpers/with-token-tracker.js b/ui/app/helpers/with-token-tracker.js
index e24517c18..8608b15f4 100644
--- a/ui/app/helpers/with-token-tracker.js
+++ b/ui/app/helpers/with-token-tracker.js
@@ -75,6 +75,9 @@ const withTokenTracker = WrappedComponent => {
}
updateBalance (tokens = []) {
+ if (!this.tracker.running) {
+ return
+ }
const [{ string, symbol }] = tokens
this.setState({ string, symbol, error: null })
}