mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
core/txpool/blobpool: downgrade "Blob transaction swapped out by signer" to debug level
This commit is contained in:
parent
5606cbc710
commit
aa0c40ab6f
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue