From 1d4603769fd39b2cb5de0d77a9105abf34788ef5 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 8 Jan 2026 02:05:14 +0100 Subject: [PATCH] perf(trie): use sorted_unstable for proof target chunking (#20827) --- crates/trie/common/src/proofs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/trie/common/src/proofs.rs b/crates/trie/common/src/proofs.rs index 4aa4a6200b..f2d75b2d3f 100644 --- a/crates/trie/common/src/proofs.rs +++ b/crates/trie/common/src/proofs.rs @@ -138,7 +138,7 @@ impl ChunkedMultiProofTargets { ) } }) - .sorted(); + .sorted_unstable(); Self { flattened_targets, size } } }