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 2faaad1 commit ea02488Copy full SHA for ea02488
lightning/src/ln/outbound_payment.rs
@@ -641,6 +641,7 @@ impl RecipientOnionFields {
641
for (typ, _) in custom_tlvs.iter() {
642
if *typ < 1 << 16 { return Err(()); }
643
if *typ == 5482373484 { return Err(()); } // keysend
644
+ if *typ == 77_777 { return Err(()); } // invoice requests for async payments
645
match prev_type {
646
Some(prev) if prev >= *typ => return Err(()),
647
_ => {},
0 commit comments