From e7510c6fdde2038893ee10a0e620dba75963e7c0 Mon Sep 17 00:00:00 2001 From: Lucas Soriano del Pino Date: Mon, 28 Oct 2024 16:12:38 +1100 Subject: [PATCH] Use ConfirmationTarget::Background to claim settle TX outputs There is actually no protocol pressure to claim these outputs quickly, so it seems foolish to pay a possibly very high price for these claim transactions. --- dlc-manager/src/manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlc-manager/src/manager.rs b/dlc-manager/src/manager.rs index dd2f5c1d..c78ac94b 100644 --- a/dlc-manager/src/manager.rs +++ b/dlc-manager/src/manager.rs @@ -1320,7 +1320,7 @@ where let fee_rate = self .fee_estimator .get_est_sat_per_1000_weight( - ConfirmationTarget::HighPriority, + ConfirmationTarget::Background, ); let fee_rate = fee_rate / 250;