changes default coin selection strategy from standard to prefer_confirmed

This commit is contained in:
Lex Berezhny 2021-12-21 10:22:09 -05:00
parent 54d6fb9da4
commit e5268f43e7

View file

@ -724,7 +724,8 @@ class Config(CLIConfig):
coin_selection_strategy = StringChoice(
"Strategy to use when selecting UTXOs for a transaction",
STRATEGIES, "standard")
STRATEGIES, "prefer_confirmed"
)
transaction_cache_size = Integer("Transaction cache size", 2 ** 17)
save_resolved_claims = Toggle(