wallet: disable tor listener by default

This commit is contained in:
ardocrat 2024-10-08 14:59:51 +03:00
parent 85fc8101e4
commit d371d4368b

View file

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