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.
This commit is contained in:
Johnathan Corgan
2026-07-13 04:00:41 +00:00
parent a45eefb58a
commit b676c9d83a
+3 -1
View File
@@ -2496,7 +2496,9 @@ impl Node {
}
/// Iterate over retry state for diagnostics.
pub fn retry_state_iter(&self) -> impl Iterator<Item = (&NodeAddr, &peering::retry::RetryState)> {
pub fn retry_state_iter(
&self,
) -> impl Iterator<Item = (&NodeAddr, &peering::retry::RetryState)> {
self.retry_pending.iter()
}