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 19e2a4e commit 3b312aaCopy full SHA for 3b312aa
lightning/src/routing/router.rs
@@ -1569,7 +1569,7 @@ where L::Target: Logger {
1569
shadow_ctlv_expiry_delta_offset = random_walk_length.wrapping_mul(144);
1570
}
1571
1572
- // Limit the offset to reduce the payment failure probabilty
+ // Limit the offset to reduce the payment failure probability
1573
const MAX_SHADOW_CLTV_EXPIRY_DELTA_OFFSET: u32 = 432; // 3*144
1574
shadow_ctlv_expiry_delta_offset = cmp::min(shadow_ctlv_expiry_delta_offset, MAX_SHADOW_CLTV_EXPIRY_DELTA_OFFSET);
1575
0 commit comments