Revert "Added report bad transaction (#541)" (#543)

This reverts commit 1331bb661a.
This commit is contained in:
Andrew Ashikhmin 2022-07-23 17:21:21 +02:00 committed by GitHub
parent 596d10ea2e
commit ecbc039b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -636,20 +636,6 @@ func (p *TxPool) Best(n uint16, txs *types.TxsRlp, tx kv.Tx) error {
return nil
}
// ReportBadTransaction - reports a bad tx in the txpool due for removal.
func (p *TxPool) ReportBadTransaction(txHash [32]byte) {
p.lock.RLock()
defer p.lock.RUnlock()
best := p.pending.best
for i := 0; i < len(best.ms); i++ {
if bytes.Equal(best.ms[i].Tx.IDHash[:], txHash[:]) {
p.pending.Remove(best.ms[i])
return
}
}
}
func (p *TxPool) CountContent() (int, int, int) {
p.lock.RLock()
defer p.lock.RUnlock()