From 0583b085eb14707538d313e11bbc03dcd8c89345 Mon Sep 17 00:00:00 2001 From: bengtlofgren Date: Wed, 5 Jul 2023 16:34:28 +0200 Subject: [PATCH] missing arg for alias-force --- apps/src/lib/cli.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/src/lib/cli.rs b/apps/src/lib/cli.rs index 0a88306f18..6ea7d30e7b 100644 --- a/apps/src/lib/cli.rs +++ b/apps/src/lib/cli.rs @@ -3532,6 +3532,9 @@ pub mod args { .def() .help("An alias to be associated with the spending key."), ) + .arg(ALIAS_FORCE.def().help( + "Override the alias without confirmation if it already exists.", + )) .arg(UNSAFE_DONT_ENCRYPT.def().help( "UNSAFE: Do not encrypt the keypair. Do not use this for keys \ used in a live network.",