mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
fix marking of confirmed transaction as dropped
This commit is contained in:
parent
4a3288fec9
commit
5572345b78
@ -317,7 +317,7 @@ module.exports = class TransactionController extends EventEmitter {
|
|||||||
if (!sameNonceTxs.length) return
|
if (!sameNonceTxs.length) return
|
||||||
// mark all same nonce transactions as dropped and give i a replacedBy hash
|
// mark all same nonce transactions as dropped and give i a replacedBy hash
|
||||||
sameNonceTxs.forEach((otherTxMeta) => {
|
sameNonceTxs.forEach((otherTxMeta) => {
|
||||||
if (otherTxMeta === txId) return
|
if (otherTxMeta.id === txId) return
|
||||||
otherTxMeta.replacedBy = txMeta.hash
|
otherTxMeta.replacedBy = txMeta.hash
|
||||||
this.txStateManager.updateTx(txMeta, 'transactions/pending-tx-tracker#event: tx:confirmed reference to confirmed txHash with same nonce')
|
this.txStateManager.updateTx(txMeta, 'transactions/pending-tx-tracker#event: tx:confirmed reference to confirmed txHash with same nonce')
|
||||||
this.txStateManager.setTxStatusDropped(otherTxMeta.id)
|
this.txStateManager.setTxStatusDropped(otherTxMeta.id)
|
||||||
|
Loading…
Reference in New Issue
Block a user