diff --git a/nym-node/src/cli/commands/run/mod.rs b/nym-node/src/cli/commands/run/mod.rs index 5e06ea442c..97356de0fd 100644 --- a/nym-node/src/cli/commands/run/mod.rs +++ b/nym-node/src/cli/commands/run/mod.rs @@ -77,7 +77,7 @@ pub(crate) async fn execute(mut args: Args) -> Result<(), NymNodeError> { if config.host.public_ips.is_empty() { return Err(NymNodeError::NoPublicIps); } - check_public_ips(&config.host.public_ips, local); + check_public_ips(&config.host.public_ips, local)?; let nym_node = NymNode::new(config).await?;