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 c058030 commit 3e8553aCopy full SHA for 3e8553a
lightning/src/routing/router.rs
@@ -1833,7 +1833,7 @@ where L::Target: Logger {
1833
total_fee_msat = total_fee_msat.saturating_add(hop_use_fee_msat);
1834
}
1835
1836
- // 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`
1837
let max_total_routing_fee_msat = payment_params.max_total_routing_fee_msat.unwrap_or(u64::max_value());
1838
if total_fee_msat > max_total_routing_fee_msat {
1839
if should_log_candidate {
0 commit comments