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 d3f46c2 commit a07e362Copy full SHA for a07e362
lightning/src/blinded_path/payment.rs
@@ -162,7 +162,7 @@ pub(super) fn compute_payinfo(
162
for (_, tlvs) in intermediate_nodes.iter().rev() {
163
// In the future, we'll want to take the intersection of all supported features for the
164
// `BlindedPayInfo`, but there are no features in that context right now.
165
- if tlvs.features.requires_unknown_bits() { return Err(()) }
+ if tlvs.features.requires_unknown_bits_from(&BlindedHopFeatures::empty()) { return Err(()) }
166
167
let next_base_fee = tlvs.payment_relay.fee_base_msat as u128;
168
let next_prop_mil = tlvs.payment_relay.fee_proportional_millionths as u128;
0 commit comments