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 76cf970 commit 1d6b2c3Copy full SHA for 1d6b2c3
plugins/lsps-plugin/src/client.rs
@@ -445,7 +445,7 @@ async fn on_htlc_accepted(
445
446
// Safe unwrap(): we already checked that `extra_tlvs` exists.
447
let extra_tlvs = req.htlc.extra_tlvs.unwrap();
448
- let deducted_amt = match extra_tlvs.get_tu64(65537)? {
+ let deducted_amt = match extra_tlvs.get_u64(65537)? {
449
Some(amt) => amt,
450
None => {
451
warn!("htlc is missing the extra_fee amount");
0 commit comments