From 37c408a6e79bc8a8cef0da9429f8efb8099da480 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 21 Dec 2021 10:22:09 -0500 Subject: [PATCH] changes default coin selection strategy from standard to prefer_confirmed --- lbry/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lbry/conf.py b/lbry/conf.py index 838aedc95..234a1709e 100644 --- a/lbry/conf.py +++ b/lbry/conf.py @@ -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(