protocol: missed formatting

Formatting was missed in the `service.rs` file.
This commit is contained in:
Fintan Halpenny 2026-01-28 10:11:05 +00:00
parent 91eb6fc078
commit 15adb16135
1 changed files with 3 additions and 1 deletions

View File

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