mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-24 08:49:29 +00:00
fix loglevel
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
parent
32a7c2b324
commit
a4de295d5d
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue