From b487126f5f6e5621c59c828ffebbd51ead4ebf34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Thu, 10 Sep 2020 12:52:04 +0100 Subject: [PATCH] Recommended testnet gateway (#335) --- clients/native/src/commands/init.rs | 2 +- clients/native/src/main.rs | 1 + clients/socks5/src/commands/init.rs | 2 +- clients/socks5/src/main.rs | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/clients/native/src/commands/init.rs b/clients/native/src/commands/init.rs index 9f1162d190..a8b6f45822 100644 --- a/clients/native/src/commands/init.rs +++ b/clients/native/src/commands/init.rs @@ -40,7 +40,7 @@ pub fn command_args<'a, 'b>() -> clap::App<'a, 'b> { ) .arg(Arg::with_name("gateway") .long("gateway") - .help("Id of the gateway we are going to connect to") + .help("Id of the gateway we are going to connect to. If unsure what to put here - 'D6YaMzLSY7mANtSQRKXsmMZpqgqiVkeiagKM4V4oFPFr' is a safe choice for the testnet") .takes_value(true) .required(true) ) diff --git a/clients/native/src/main.rs b/clients/native/src/main.rs index 04e74a88c3..b62bdfd485 100644 --- a/clients/native/src/main.rs +++ b/clients/native/src/main.rs @@ -23,6 +23,7 @@ fn main() { dotenv::dotenv().ok(); setup_logging(); println!("{}", banner()); + println!("\n\nIf unsure which gateway to choose - 'D6YaMzLSY7mANtSQRKXsmMZpqgqiVkeiagKM4V4oFPFr' is a safe choice for the testnet\n\n"); let arg_matches = App::new("Nym Client") .version(built_info::PKG_VERSION) diff --git a/clients/socks5/src/commands/init.rs b/clients/socks5/src/commands/init.rs index b0df220d72..c239c1b0f7 100644 --- a/clients/socks5/src/commands/init.rs +++ b/clients/socks5/src/commands/init.rs @@ -46,7 +46,7 @@ pub fn command_args<'a, 'b>() -> clap::App<'a, 'b> { ) .arg(Arg::with_name("gateway") .long("gateway") - .help("Id of the gateway we are going to connect to") + .help("Id of the gateway we are going to connect to. If unsure what to put here - 'D6YaMzLSY7mANtSQRKXsmMZpqgqiVkeiagKM4V4oFPFr' is a safe choice for the testnet") .takes_value(true) .required(true) ) diff --git a/clients/socks5/src/main.rs b/clients/socks5/src/main.rs index dfcbc72f15..bfdc522000 100644 --- a/clients/socks5/src/main.rs +++ b/clients/socks5/src/main.rs @@ -23,6 +23,7 @@ fn main() { dotenv::dotenv().ok(); setup_logging(); println!("{}", banner()); + println!("\n\nIf unsure which gateway to choose - 'D6YaMzLSY7mANtSQRKXsmMZpqgqiVkeiagKM4V4oFPFr' is a safe choice for the testnet\n\n"); let arg_matches = App::new("Nym Socks5 Proxy") .version(built_info::PKG_VERSION)