From 7e90ff8b855c964cdeea494ef7cc78aee21247ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogdan-=C8=98tefan=20Neac=C8=99u?= Date: Tue, 14 Feb 2023 12:16:34 +0200 Subject: [PATCH] Fix nyxd typo --- clients/native/src/commands/init.rs | 2 +- clients/native/src/commands/run.rs | 2 +- clients/socks5/src/commands/init.rs | 2 +- clients/socks5/src/commands/run.rs | 2 +- gateway/src/commands/init.rs | 2 +- gateway/src/commands/run.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/clients/native/src/commands/init.rs b/clients/native/src/commands/init.rs index 9fdab2fd5f..ec5283e211 100644 --- a/clients/native/src/commands/init.rs +++ b/clients/native/src/commands/init.rs @@ -31,7 +31,7 @@ pub(crate) struct Init { force_register_gateway: bool, /// Comma separated list of rest endpoints of the nyxd validators - #[clap(long, alias = "nymd_validators", value_delimiter = ',', hide = true)] + #[clap(long, alias = "nyxd_validators", value_delimiter = ',', hide = true)] nyxd_urls: Option>, /// Comma separated list of rest endpoints of the API validators diff --git a/clients/native/src/commands/run.rs b/clients/native/src/commands/run.rs index e2e90082b3..80b89fec1c 100644 --- a/clients/native/src/commands/run.rs +++ b/clients/native/src/commands/run.rs @@ -23,7 +23,7 @@ pub(crate) struct Run { id: String, /// Comma separated list of rest endpoints of the nyxd validators - #[clap(long, alias = "nymd_validators", value_delimiter = ',', hide = true)] + #[clap(long, alias = "nyxd_validators", value_delimiter = ',', hide = true)] nyxd_urls: Option>, /// Comma separated list of rest endpoints of the API validators diff --git a/clients/socks5/src/commands/init.rs b/clients/socks5/src/commands/init.rs index f459fc7e77..2bd0296f42 100644 --- a/clients/socks5/src/commands/init.rs +++ b/clients/socks5/src/commands/init.rs @@ -43,7 +43,7 @@ pub(crate) struct Init { force_register_gateway: bool, /// Comma separated list of rest endpoints of the nyxd validators - #[clap(long, alias = "nymd_validators", value_delimiter = ',', hide = true)] + #[clap(long, alias = "nyxd_validators", value_delimiter = ',', hide = true)] nyxd_urls: Option>, /// Comma separated list of rest endpoints of the API validators diff --git a/clients/socks5/src/commands/run.rs b/clients/socks5/src/commands/run.rs index 80bbd02c47..9303a77abb 100644 --- a/clients/socks5/src/commands/run.rs +++ b/clients/socks5/src/commands/run.rs @@ -43,7 +43,7 @@ pub(crate) struct Run { gateway: Option, /// Comma separated list of rest endpoints of the nyxd validators - #[clap(long, alias = "nymd_validators", value_delimiter = ',', hide = true)] + #[clap(long, alias = "nyxd_validators", value_delimiter = ',', hide = true)] nyxd_urls: Option>, /// Comma separated list of rest endpoints of the Nym APIs diff --git a/gateway/src/commands/init.rs b/gateway/src/commands/init.rs index 046269dfe5..bdf3b2ce03 100644 --- a/gateway/src/commands/init.rs +++ b/gateway/src/commands/init.rs @@ -54,7 +54,7 @@ pub struct Init { #[clap( long, alias = "validators", - alias = "nymd_validators", + alias = "nyxd_validators", value_delimiter = ',', hide = true )] diff --git a/gateway/src/commands/run.rs b/gateway/src/commands/run.rs index 3f149b42fe..4000fd8a7f 100644 --- a/gateway/src/commands/run.rs +++ b/gateway/src/commands/run.rs @@ -52,7 +52,7 @@ pub struct Run { #[clap( long, alias = "validators", - alias = "nymd_validators", + alias = "nyxd_validators", value_delimiter = ',', hide = true )]