aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/index.js
diff options
context:
space:
mode:
authorDan Finlay <somniac@me.com>2016-09-09 06:39:42 +0800
committerGitHub <noreply@github.com>2016-09-09 06:39:42 +0800
commitfc0f64a5a8cf23c0feed2e2583cf07de7c9548a5 (patch)
tree712c02bfc76bfa8136e123d6ab7ceae85a50a6ba /ui/app/accounts/index.js
parent1f0b2ca787670455a2cbecf9d539a7fb66793525 (diff)
parent3f64095eed151dbef9e18d388c8f30d43f18bbae (diff)
downloadtangerine-wallet-browser-fc0f64a5a8cf23c0feed2e2583cf07de7c9548a5.tar.gz
tangerine-wallet-browser-fc0f64a5a8cf23c0feed2e2583cf07de7c9548a5.tar.zst
tangerine-wallet-browser-fc0f64a5a8cf23c0feed2e2583cf07de7c9548a5.zip
Merge pull request #627 from MetaMask/i#589pendingTxsIssue
I#589pending txs issue
Diffstat (limited to 'ui/app/accounts/index.js')
-rw-r--r--ui/app/accounts/index.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/app/accounts/index.js b/ui/app/accounts/index.js
index 6e12accc7..c20900c1e 100644
--- a/ui/app/accounts/index.js
+++ b/ui/app/accounts/index.js
@@ -11,6 +11,7 @@ module.exports = connect(mapStateToProps)(AccountsScreen)
function mapStateToProps (state) {
const pendingTxs = valuesFor(state.metamask.unconfTxs)
+ .filter(tx => tx.txParams.metamaskNetworkId === state.metamask.network)
const pendingMsgs = valuesFor(state.metamask.unconfMsgs)
const pending = pendingTxs.concat(pendingMsgs)