File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -396,9 +396,10 @@ pub struct ProbabilisticScoringParameters {
396
396
/// This penalty is applied when the amount we're attempting to send over a channel exceeds our
397
397
/// current estimate of the channel's available liquidity.
398
398
///
399
- /// Note that in this case the [`liquidity_penalty_multiplier_msat`] and
400
- /// [`amount_penalty_multiplier_msat`]-based penalties are still included in the overall
401
- /// penalty.
399
+ /// Note that in this case all other penalties, including the
400
+ /// [`liquidity_penalty_multiplier_msat`] and [`amount_penalty_multiplier_msat`]-based
401
+ /// penalties, as well as the [`base_penalty_msat`] and the [`anti_probing_penalty_msat`], if
402
+ /// applicable, are still included in the overall penalty.
402
403
///
403
404
/// If you wish to avoid creating paths with such channels entirely, setting this to a value of
404
405
/// `u64::max_value()` will guarantee that.
@@ -407,6 +408,8 @@ pub struct ProbabilisticScoringParameters {
407
408
///
408
409
/// [`liquidity_penalty_multiplier_msat`]: Self::liquidity_penalty_multiplier_msat
409
410
/// [`amount_penalty_multiplier_msat`]: Self::amount_penalty_multiplier_msat
411
+ /// [`base_penalty_msat`]: Self::base_penalty_msat
412
+ /// [`anti_probing_penalty_msat`]: Self::anti_probing_penalty_msat
410
413
pub considered_impossible_penalty_msat : u64 ,
411
414
}
412
415
You can’t perform that action at this time.
0 commit comments