node: Re-export `PeerAddrParseError`

In order to build higher-level errors that use `PeerAddrParseError`, it
must be re-exported.
This commit is contained in:
Erik Kundt 2025-10-15 13:11:32 +02:00 committed by Fintan Halpenny
parent 6cfed884bf
commit f20c2f215a
1 changed files with 1 additions and 1 deletions

View File

@ -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;