diff --git a/radicle-node/src/main.rs b/radicle-node/src/main.rs index 94f09c1e..ce695f4a 100644 --- a/radicle-node/src/main.rs +++ b/radicle-node/src/main.rs @@ -128,10 +128,7 @@ fn execute() -> anyhow::Result<()> { }; let proxy = net::SocketAddr::new(net::Ipv4Addr::LOCALHOST.into(), 9050); let daemon = options.daemon.unwrap_or_else(|| { - net::SocketAddr::new( - net::Ipv4Addr::UNSPECIFIED.into(), - radicle::git::PROTOCOL_PORT, - ) + net::SocketAddr::new(net::Ipv4Addr::LOCALHOST.into(), radicle::git::PROTOCOL_PORT) }); let (notify, signals) = chan::bounded(1);