aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/scripts/controllers/transactions.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/scripts/controllers/transactions.js b/app/scripts/controllers/transactions.js
index 542881b8f..28130c164 100644
--- a/app/scripts/controllers/transactions.js
+++ b/app/scripts/controllers/transactions.js
@@ -47,8 +47,10 @@ module.exports = class TransactionController extends EventEmitter {
},
publishTransaction: this.txProviderUtil.publishTransaction.bind(this.txProviderUtil),
getPendingTransactions: () => {
+ const network = this.getNetwork()
return this.getFilteredTxList({
status: 'submitted',
+ metamaskNetworkId: network,
})
},
})