diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-07-05 21:04:16 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-07-05 21:24:51 +0800 |
commit | 783559f94ef7370d2fef88327c500fbe826ac0b0 (patch) | |
tree | 569a9f51ec6f2414c3e3e87116c305fabf1f602c | |
parent | 0116ea9b95c5a9ab35d23e814a1783ef2bc11c25 (diff) | |
download | tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar.gz tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar.bz2 tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar.lz tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar.xz tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.tar.zst tangerine-wallet-browser-783559f94ef7370d2fef88327c500fbe826ac0b0.zip |
Don't update token balances after tracker is stopped
-rw-r--r-- | ui/app/components/token-balance.js | 4 | ||||
-rw-r--r-- | ui/app/components/token-list.js | 3 | ||||
-rw-r--r-- | ui/app/helpers/with-token-tracker.js | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/ui/app/components/token-balance.js b/ui/app/components/token-balance.js index 5464294ce..99ca7335c 100644 --- a/ui/app/components/token-balance.js +++ b/ui/app/components/token-balance.js @@ -98,6 +98,10 @@ TokenBalance.prototype.componentDidUpdate = function (nextProps) { } TokenBalance.prototype.updateBalance = function (tokens = []) { + if (!this.tracker.running) { + return + } + const [{ string, symbol }] = tokens this.setState({ diff --git a/ui/app/components/token-list.js b/ui/app/components/token-list.js index 89434f213..42351cf89 100644 --- a/ui/app/components/token-list.js +++ b/ui/app/components/token-list.js @@ -158,6 +158,9 @@ TokenList.prototype.componentDidUpdate = function (nextProps) { } TokenList.prototype.updateBalances = function (tokens) { + if (!this.tracker.running) { + return + } this.setState({ tokens, isLoading: false }) } 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 }) } |