From f4e79412138764cd3193ec9329b9077c5362ceef Mon Sep 17 00:00:00 2001 From: AntiochP <30642645+antiochp@users.noreply.github.com> Date: Tue, 14 Nov 2017 22:30:22 -0500 Subject: [PATCH] fix default wallet strategy (all vs default) (#267) --- 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 03ff4243b..8379fd65a 100644 --- a/src/bin/grin.rs +++ b/src/bin/grin.rs @@ -430,7 +430,7 @@ fn wallet_command(wallet_args: &ArgMatches) { amount, minimum_confirmations, dest.to_string(), - (selection_strategy == "default"), + (selection_strategy == "all"), ); match result { Ok(_) => {}, //success messaged logged internally