Skip to content

Commit

Permalink
core: fix the order of address in queue (#24907)
Browse files Browse the repository at this point in the history
reverse the order of address in queue
  • Loading branch information
zhaochonghe authored and qinglin89 committed Sep 1, 2022
1 parent e7d3f01 commit 467be88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tx_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,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; {
Expand Down

0 comments on commit 467be88

Please sign in to comment.