From 4ece454c67959e53a85bef6ad691fd30e1e8e036 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Thu, 18 Jan 2018 13:25:54 +0100 Subject: [PATCH] Fix inconsistent key_derivations default in help string (#628) --- 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 0914894b8..cb9ffd320 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 500)") + you believe should belong to this seed/password. (Default 1000)") .short("k") .long("key_derivations") .default_value("1000")