mirror of
https://github.com/jmcorgan/fips.git
synced 2026-07-30 19:46:15 +00:00
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:
+3
-1
@@ -2496,7 +2496,9 @@ impl Node {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Iterate over retry state for diagnostics.
|
/// 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()
|
self.retry_pending.iter()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user