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 686004c commit a8c6f8fCopy full SHA for a8c6f8f
lightning/src/ln/outbound_payment.rs
@@ -953,6 +953,10 @@ impl OutboundPayments {
953
path_errs.push(Err(APIError::InvalidRoute{err: "Path didn't go anywhere/had bogus size".to_owned()}));
954
continue 'path_check;
955
}
956
+ if path.blinded_tail.is_some() {
957
+ path_errs.push(Err(APIError::InvalidRoute{err: "Sending to blinded paths isn't supported yet".to_owned()}));
958
+ continue 'path_check;
959
+ }
960
for (idx, hop) in path.hops.iter().enumerate() {
961
if idx != path.hops.len() - 1 && hop.pubkey == our_node_id {
962
path_errs.push(Err(APIError::InvalidRoute{err: "Path went through us but wasn't a simple rebalance loop to us".to_owned()}));
0 commit comments