mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-08 12:21:09 +03:00
fix default wallet strategy (all vs default) (#267)
This commit is contained in:
parent
6ac2fe2a8c
commit
f4e7941213
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ fn wallet_command(wallet_args: &ArgMatches) {
|
||||||
amount,
|
amount,
|
||||||
minimum_confirmations,
|
minimum_confirmations,
|
||||||
dest.to_string(),
|
dest.to_string(),
|
||||||
(selection_strategy == "default"),
|
(selection_strategy == "all"),
|
||||||
);
|
);
|
||||||
match result {
|
match result {
|
||||||
Ok(_) => {}, //success messaged logged internally
|
Ok(_) => {}, //success messaged logged internally
|
||||||
|
|
Loading…
Reference in a new issue