mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 09:50:45 +00:00
parent
7fd5927081
commit
84aedaa7bf
1 changed files with 1 additions and 1 deletions
|
|
@ -1856,7 +1856,6 @@ func (pool *LegacyPool) demoteUnexecutables() {
|
||||||
pool.all.Remove(hash)
|
pool.all.Remove(hash)
|
||||||
log.Trace("Removed unpayable pending transaction", "hash", hash)
|
log.Trace("Removed unpayable pending transaction", "hash", hash)
|
||||||
}
|
}
|
||||||
pool.priced.Removed(len(olds) + len(drops))
|
|
||||||
pendingNofundsMeter.Mark(int64(len(drops)))
|
pendingNofundsMeter.Mark(int64(len(drops)))
|
||||||
|
|
||||||
for _, tx := range invalids {
|
for _, tx := range invalids {
|
||||||
|
|
@ -1866,6 +1865,7 @@ func (pool *LegacyPool) demoteUnexecutables() {
|
||||||
// Internal shuffle shouldn't touch the lookup set.
|
// Internal shuffle shouldn't touch the lookup set.
|
||||||
pool.enqueueTx(hash, tx, false, false)
|
pool.enqueueTx(hash, tx, false, false)
|
||||||
}
|
}
|
||||||
|
pool.priced.Removed(len(olds) + len(drops))
|
||||||
pendingGauge.Dec(int64(len(olds) + len(drops) + len(invalids)))
|
pendingGauge.Dec(int64(len(olds) + len(drops) + len(invalids)))
|
||||||
if pool.locals.contains(addr) {
|
if pool.locals.contains(addr) {
|
||||||
localGauge.Dec(int64(len(olds) + len(drops) + len(invalids)))
|
localGauge.Dec(int64(len(olds) + len(drops) + len(invalids)))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue