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 5023fe0 commit a6d08feCopy full SHA for a6d08fe
lightning/src/blinded_path/payment.rs
@@ -201,7 +201,7 @@ pub(super) fn compute_payinfo(
201
.try_fold(0u16, |acc, delta| acc.checked_add(delta)).ok_or(())?,
202
htlc_minimum_msat: path.iter().map(|(_, tlvs)| tlvs.htlc_minimum_msat()).max().unwrap_or(0),
203
// TODO: this field isn't present in route blinding encrypted data
204
- htlc_maximum_msat: 21_000_000 * 1_0000_0000, // Total bitcoin supply
+ htlc_maximum_msat: 21_000_000 * 100_000_000 * 1_000, // Total bitcoin supply
205
// TODO: when there are blinded hop features, take the subset of them here
206
features: BlindedHopFeatures::empty(),
207
})
0 commit comments