From 8eeb9aa267f567fb9c72060222c3a347aa574492 Mon Sep 17 00:00:00 2001 From: creating2morrow Date: Fri, 23 Jun 2023 19:10:59 -0400 Subject: [PATCH] start i2p-zero by default --- neveko-core/src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neveko-core/src/utils.rs b/neveko-core/src/utils.rs index 18b8268..8a188f8 100644 --- a/neveko-core/src/utils.rs +++ b/neveko-core/src/utils.rs @@ -529,7 +529,7 @@ pub async fn start_up() { std::env::set_var(crate::MONERO_WALLET_PASSWORD, &wallet_password); } gen_app_wallet(&wallet_password).await; - if args.i2p_normal { + if !args.i2p_advanced { i2p::start().await; } gen_app_gpg().await;