We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93ee839 commit 1a04e4aCopy full SHA for 1a04e4a
lightning/src/routing/router.rs
@@ -1830,7 +1830,7 @@ where L::Target: Logger {
1830
total_fee_msat = total_fee_msat.saturating_add(hop_use_fee_msat);
1831
}
1832
1833
- // Ignore hops if they by themselves would already put us over `max_total_routing_fee_msat`
+ // Ignore hops if augmenting the current path to them would put us over `max_total_routing_fee_msat`
1834
let max_total_routing_fee_msat = payment_params.max_total_routing_fee_msat.unwrap_or(u64::max_value());
1835
if total_fee_msat > max_total_routing_fee_msat {
1836
if should_log_candidate {
0 commit comments