Skip to content

Commit cf6e4cf

Browse files
Update core/tx_pool.go
Co-authored-by: colin <[email protected]>
1 parent c79ee45 commit cf6e4cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/tx_pool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ func (pool *TxPool) loop() {
431431
if time.Since(pool.beats[addr]) > pool.config.Lifetime {
432432
list := pool.queue[addr].Flatten()
433433
for _, tx := range list {
434-
log.Info("evict tx for timeout", "tx", tx.Hash().String())
434+
log.Info("evict queue tx for timeout", "tx", tx.Hash().String())
435435
pool.removeTx(tx.Hash(), true)
436436
}
437437
queuedEvictionMeter.Mark(int64(len(list)))

0 commit comments

Comments
 (0)