From 1a9763e116a1006427dcff69605b63aa3aa82a83 Mon Sep 17 00:00:00 2001 From: Update Nightly Rustc Bot Date: Sun, 1 Feb 2026 17:40:03 +0000 Subject: [PATCH 1/2] Automated update to Rust nightly-2026-02-01 --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 4f73f33c1c..2311fd7705 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly-2026-01-01" +channel = "nightly-2026-02-01" components = [ "cargo", "clippy", From d4fe3cba1be9e290a2e244d8d4b995bea062f14d Mon Sep 17 00:00:00 2001 From: Jose Storopoli Date: Sun, 1 Feb 2026 19:25:11 -0300 Subject: [PATCH 2/2] chore: automate clippy lints --- crates/ol/mempool/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ol/mempool/src/types.rs b/crates/ol/mempool/src/types.rs index ae40bd81ab..b6a99771cd 100644 --- a/crates/ol/mempool/src/types.rs +++ b/crates/ol/mempool/src/types.rs @@ -987,7 +987,7 @@ mod tests { ), ]; - entries.sort_by(|a, b| a.ordering_key.cmp(&b.ordering_key)); + entries.sort_by_key(|a| a.ordering_key); let timestamps: Vec = entries .iter() .map(|e| e.ordering_key.timestamp_micros())