From d371d4368b299503b01827fb8b0e52ceb370ffe5 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Tue, 8 Oct 2024 14:59:51 +0300 Subject: [PATCH] wallet: disable tor listener by default --- src/wallet/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/config.rs b/src/wallet/config.rs index 8da141b..7959155 100644 --- a/src/wallet/config.rs +++ b/src/wallet/config.rs @@ -80,7 +80,7 @@ impl WalletConfig { }, min_confirmations: MIN_CONFIRMATIONS_DEFAULT, use_dandelion: Some(true), - enable_tor_listener: Some(true), + enable_tor_listener: Some(false), api_port: Some(rand::thread_rng().gen_range(10000..30000)), }; Settings::write_to_file(&config, config_path);