Skip to content

Commit

Permalink
Merge pull request #3529 from lbryio/change_default_coin_selection_st…
Browse files Browse the repository at this point in the history
…rategy

changes default coin selection strategy from standard to prefer_confirmed
  • Loading branch information
eukreign committed Dec 22, 2021
2 parents 54d6fb9 + e5268f4 commit 5eb95d7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lbry/conf.py
Expand Up @@ -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(
Expand Down

0 comments on commit 5eb95d7

Please sign in to comment.