fix loglevel

Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
Csaba Kiraly 2026-02-24 11:59:17 +01:00
parent 32a7c2b324
commit a4de295d5d
No known key found for this signature in database
GPG key ID: 0FE274EE8C95166E

View file

@ -1596,7 +1596,7 @@ func (p *BlobPool) addLocked(tx *types.Transaction, checkGapped bool) (err error
// This is to prevent constant replacement when the pool is full.
if p.stored+meta.size > p.config.Datacap {
if p.evict.Underpriced(meta) {
log.Warn("Dropping underpriced blob transaction", "tx", tx.Hash(), "feecap", tx.GasFeeCap(), "tipcap", tx.GasTipCap(), "blobfeecap", tx.BlobGasFeeCap())
log.Trace("Dropping underpriced blob transaction", "tx", tx.Hash(), "feecap", tx.GasFeeCap(), "tipcap", tx.GasTipCap(), "blobfeecap", tx.BlobGasFeeCap())
return txpool.ErrUnderpriced
}
}
@ -1730,7 +1730,7 @@ func (p *BlobPool) addLocked(tx *types.Transaction, checkGapped bool) (err error
// We've already checked for this with approximate size, but do a final
// check in case it was dropped with the exact size.
if !p.lookup.exists(tx.Hash()) {
log.Warn("Added blob transaction was dropped immediately, indicating underpricing", "hash", tx.Hash())
log.Trace("Added blob transaction was dropped immediately, indicating underpricing", "hash", tx.Hash())
addUnderpricedMeter.Mark(1)
return txpool.ErrUnderpriced
}