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 }, }