From 15adb161357262f9287d1b90fffda55f6c2611c0 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 28 Jan 2026 10:11:05 +0000 Subject: [PATCH] protocol: missed formatting Formatting was missed in the `service.rs` file. --- crates/radicle-protocol/src/service.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/radicle-protocol/src/service.rs b/crates/radicle-protocol/src/service.rs index b36c5e95..713c07d3 100644 --- a/crates/radicle-protocol/src/service.rs +++ b/crates/radicle-protocol/src/service.rs @@ -221,7 +221,9 @@ pub enum ConnectError { SelfConnection, #[error("outbound connection limit reached when attempting {nid} ({addr})")] LimitReached { nid: NodeId, addr: Address }, - #[error("attempted connection to {nid}, via {addr} but addresses of this kind are not supported")] + #[error( + "attempted connection to {nid}, via {addr} but addresses of this kind are not supported" + )] UnsupportedAddress { nid: NodeId, addr: Address }, }