Skip to content

Commit

Permalink
Remove extraneous 'addedAt' check
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Whitehead <[email protected]>
  • Loading branch information
matthew1001 committed Nov 8, 2023
1 parent 68e830d commit 9b0971f
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public class GasPricePendingTransactionsSorter extends AbstractPendingTransactio
new TreeSet<>(
comparing(PendingTransaction::hasPriority)
.thenComparing(PendingTransaction::getGasPrice)
.thenComparing(PendingTransaction::getAddedAt, Comparator.reverseOrder())
.thenComparing(PendingTransaction::getSequence, Comparator.reverseOrder())
.reversed());

Expand Down

0 comments on commit 9b0971f

Please sign in to comment.