From 8710d527970bea9177fc705d1f7b26715e672c8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20Br=C3=B8ns-Pedersen?= Date: Tue, 23 Jan 2018 19:37:56 +0100 Subject: [PATCH] print default --key_derivations only once (#650) Since the default value is also embedded in the help string it appears twice in the output from `grin wallet help`. This PR just removes the default from the help string. --- src/bin/grin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/grin.rs b/src/bin/grin.rs index cd120ba98..836ac8610 100644 --- a/src/bin/grin.rs +++ b/src/bin/grin.rs @@ -201,7 +201,7 @@ fn main() { .arg(Arg::with_name("key_derivations") .help("The number of keys possiblities to search for each output. \ Ideally, set this to a number greater than the number of outputs \ - you believe should belong to this seed/password. (Default 1000)") + you believe should belong to this seed/password.") .short("k") .long("key_derivations") .default_value("1000")