aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/scripts/lib/tx-state-manager.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/lib/tx-state-manager.js b/app/scripts/lib/tx-state-manager.js
index 13e645a28..f488130a2 100644
--- a/app/scripts/lib/tx-state-manager.js
+++ b/app/scripts/lib/tx-state-manager.js
@@ -226,7 +226,7 @@ module.exports = class TransactionStateManger extends EventEmitter {
const txs = this.getTxList()
// Filter out the ones from the current account
- const otherAccountTxs = txs.filter((txMeta) => txMeta.from !== address)
+ const otherAccountTxs = txs.filter((txMeta) => txMeta.txParams.from !== address)
// Update state
this._saveTxList(otherAccountTxs)