From f20c2f215ade6aa4c0cf4a9161f55790ee11438a Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Wed, 15 Oct 2025 13:11:32 +0200 Subject: [PATCH] node: Re-export `PeerAddrParseError` In order to build higher-level errors that use `PeerAddrParseError`, it must be re-exported. --- crates/radicle/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle/src/node.rs b/crates/radicle/src/node.rs index 4b108a8c..62525075 100644 --- a/crates/radicle/src/node.rs +++ b/crates/radicle/src/node.rs @@ -46,7 +46,7 @@ use crate::storage::RefUpdate; pub use address::KnownAddress; pub use command::{Command, CommandResult, ConnectOptions, Success, DEFAULT_TIMEOUT}; pub use config::Config; -pub use cyphernet::addr::{HostName, PeerAddr}; +pub use cyphernet::addr::{HostName, PeerAddr, PeerAddrParseError}; pub use db::Database; pub use events::{Event, Events}; pub use features::Features;