@@ -116,12 +116,14 @@ where
116
116
let mut locked_fee_rate_cache = self . fee_rate_cache . write ( ) . unwrap ( ) ;
117
117
118
118
let confirmation_targets = vec ! [
119
+ ConfirmationTarget :: MempoolMinimum ,
119
120
ConfirmationTarget :: Background ,
120
121
ConfirmationTarget :: Normal ,
121
122
ConfirmationTarget :: HighPriority ,
122
123
] ;
123
124
for target in confirmation_targets {
124
125
let num_blocks = match target {
126
+ ConfirmationTarget :: MempoolMinimum => 144 ,
125
127
ConfirmationTarget :: Background => 12 ,
126
128
ConfirmationTarget :: Normal => 6 ,
127
129
ConfirmationTarget :: HighPriority => 3 ,
@@ -282,7 +284,8 @@ where
282
284
let locked_fee_rate_cache = self . fee_rate_cache . read ( ) . unwrap ( ) ;
283
285
284
286
let fallback_sats_kwu = match confirmation_target {
285
- ConfirmationTarget :: Background => FEERATE_FLOOR_SATS_PER_KW ,
287
+ ConfirmationTarget :: MempoolMinimum => FEERATE_FLOOR_SATS_PER_KW ,
288
+ ConfirmationTarget :: Background => 500 ,
286
289
ConfirmationTarget :: Normal => 2000 ,
287
290
ConfirmationTarget :: HighPriority => 5000 ,
288
291
} ;
0 commit comments