mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-11 14:33:52 +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)
|
gapped := list.Cap(0)
|
||||||
for _, tx := range gapped {
|
for _, tx := range gapped {
|
||||||
hash := tx.Hash()
|
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.
|
// Internal shuffle shouldn't touch the lookup set.
|
||||||
pool.enqueueTx(hash, tx, false)
|
pool.enqueueTx(hash, tx, false)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue