From b676c9d83a3cb55cc32a2944038519a7540a9906 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Mon, 13 Jul 2026 04:00:41 +0000 Subject: [PATCH] node: rewrap over-width retry_state_iter signature Homing the retry schedule under peering/ lengthened the RetryState module path, pushing the retry_state_iter return-type line past the 100-column max_width. Rewrap to satisfy rustfmt. No behavior change. --- src/node/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/node/mod.rs b/src/node/mod.rs index f8665bc..4f1ba0b 100644 --- a/src/node/mod.rs +++ b/src/node/mod.rs @@ -2496,7 +2496,9 @@ impl Node { } /// Iterate over retry state for diagnostics. - pub fn retry_state_iter(&self) -> impl Iterator { + pub fn retry_state_iter( + &self, + ) -> impl Iterator { self.retry_pending.iter() }