mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
fix(txpool): Demote error log to warn
This commit is contained in:
parent
d219e9b005
commit
5f75e73cb7
1 changed files with 1 additions and 1 deletions
|
|
@ -1604,7 +1604,7 @@ func (pool *LegacyPool) demoteUnexecutables() {
|
|||
gapped := list.Cap(0)
|
||||
for _, tx := range gapped {
|
||||
hash := tx.Hash()
|
||||
log.Error("Demoting invalidated transaction", "hash", hash)
|
||||
log.Warn("Demoting invalidated transaction", "hash", hash)
|
||||
|
||||
// Internal shuffle shouldn't touch the lookup set.
|
||||
pool.enqueueTx(hash, tx, false)
|
||||
|
|
|
|||
Loading…
Reference in a new issue