Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Remove sort_unstable_by #4314

Merged
merged 1 commit into from
Nov 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/parachains/src/paras_inherent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ fn limit_disputes<T: Config>(
// Sort the dispute statements according to the following prioritization:
// 1. Prioritize local disputes over remote disputes.
// 2. Prioritize older disputes over newer disputes.
disputes.sort_unstable_by(|a, b| {
disputes.sort_by(|a, b| {
let a_local_block = T::DisputesHandler::included_state(a.session, a.candidate_hash);
let b_local_block = T::DisputesHandler::included_state(b.session, b.candidate_hash);
match (a_local_block, b_local_block) {
Expand Down