forked from LBRYCommunity/lbry-sdk
changes default coin selection strategy from standard to prefer_confirmed
This commit is contained in:
parent
a866621ccb
commit
37c408a6e7
1 changed files with 2 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue