Unverified Commit a35a5cad authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #24908 from zhaochonghe/master

core: fix the order of address in queue 
parents 59e0f1ee 2bfd9a28
...@@ -1476,7 +1476,7 @@ func (pool *TxPool) truncateQueue() { ...@@ -1476,7 +1476,7 @@ func (pool *TxPool) truncateQueue() {
addresses = append(addresses, addressByHeartbeat{addr, pool.beats[addr]}) 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 // Drop transactions until the total is below the limit or only locals remain
for drop := queued - pool.config.GlobalQueue; drop > 0 && len(addresses) > 0; { for drop := queued - pool.config.GlobalQueue; drop > 0 && len(addresses) > 0; {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment