core/txpool/blobpool: downgrade "Blob transaction swapped out by signer" to debug level

This commit is contained in:
VolodymyrBg 2025-03-12 21:34:33 +02:00 committed by GitHub
parent 5606cbc710
commit aa0c40ab6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -777,7 +777,7 @@ func (p *BlobPool) offload(addr common.Address, nonce uint64, id uint64, inclusi
}
block, ok := inclusions[tx.Hash()]
if !ok {
log.Warn("Blob transaction swapped out by signer", "from", addr, "nonce", nonce, "id", id)
log.Debug("Blob transaction swapped out by signer", "from", addr, "nonce", nonce, "id", id)
return
}
if err := p.limbo.push(&tx, block); err != nil {