Merge pull request #3529 from lbryio/change_default_coin_selection_strategy

changes default coin selection strategy from standard to prefer_confirmed
This commit is contained in:
Lex Berezhny 2021-12-22 11:28:22 -05:00 committed by GitHub
commit 5eb95d7dd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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(