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 d913a80 commit ba56f3cCopy full SHA for ba56f3c
lightning/src/routing/router.rs
@@ -2172,7 +2172,7 @@ where L::Target: Logger {
2172
route_hints
2173
.iter().zip(introduction_node_id_cache.iter())
2174
.filter(|((_, p), _)| p.blinded_hops.len() == 1)
2175
- .any(|(_, p_introduction_node_id)| p_introduction_node_id != info_opt)
+ .any(|(_, iter_info_opt)| iter_info_opt.is_some() && iter_info_opt != info_opt)
2176
{
2177
return Err(LightningError{err: format!("1-hop blinded paths must all have matching introduction node ids"), action: ErrorAction::IgnoreError});
2178
}
0 commit comments