mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
core: use removeTx instead of delete
This commit is contained in:
parent
03bb88dec0
commit
92f998c7ef
1 changed files with 1 additions and 1 deletions
|
|
@ -235,7 +235,7 @@ func (self *TxPool) RemoveTransactions(txs types.Transactions) {
|
|||
defer self.mu.Unlock()
|
||||
|
||||
for _, tx := range txs {
|
||||
delete(self.txs, tx.Hash())
|
||||
self.removeTx(tx.Hash())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue