From 75db9c65191005d2250cadf98e0a03ce367034f5 Mon Sep 17 00:00:00 2001 From: Omer Yacine Date: Mon, 6 Feb 2023 18:18:40 +0200 Subject: [PATCH] fixup: record the correct port for the Tor interface --- teos/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teos/src/main.rs b/teos/src/main.rs index 023eb282..8f079b9f 100644 --- a/teos/src/main.rs +++ b/teos/src/main.rs @@ -293,7 +293,7 @@ async fn main() { .await; addresses.push(msgs::NetworkAddress::from_torv3( tor_api.get_onion_address(), - conf.api_port, + conf.onion_hidden_service_port, )); Some(tor_api)