Skip to content

Commit e7510c6

Browse files
committedOct 28, 2024··
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.
1 parent 81090c4 commit e7510c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎dlc-manager/src/manager.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,7 @@ where
13201320
let fee_rate = self
13211321
.fee_estimator
13221322
.get_est_sat_per_1000_weight(
1323-
ConfirmationTarget::HighPriority,
1323+
ConfirmationTarget::Background,
13241324
);
13251325

13261326
let fee_rate = fee_rate / 250;

0 commit comments

Comments
 (0)
Please sign in to comment.