Merge pull request #24908 from zhaochonghe/master

core: fix the order of address in queue
This commit is contained in:
Péter Szilágyi 2022-05-19 11:27:29 +03:00 committed by GitHub
commit a35a5cad22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1476,7 +1476,7 @@ func (pool *TxPool) truncateQueue() {
addresses = append(addresses, addressByHeartbeat{addr, pool.beats[addr]})
}
}
sort.Sort(addresses)
sort.Sort(sort.Reverse(addresses))
// Drop transactions until the total is below the limit or only locals remain
for drop := queued - pool.config.GlobalQueue; drop > 0 && len(addresses) > 0; {