perf(trie): use sorted_unstable for proof target chunking (#20827)

This commit is contained in:
Matthias Seitz
2026-01-08 02:05:14 +01:00
committed by GitHub
parent 9bba8c7a98
commit 1d4603769f

View File

@@ -138,7 +138,7 @@ impl ChunkedMultiProofTargets {
)
}
})
.sorted();
.sorted_unstable();
Self { flattened_targets, size }
}
}