From: Valentine Wallace Date: Tue, 12 Sep 2023 18:55:36 +0000 (-0400) Subject: Pathfinding: log when we ignore one hop blinded route hints X-Git-Tag: v0.0.117-rc1~19^2~8 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=6cfb052d986a9007c46d7b84e88b9cc528a29270;p=rust-lightning Pathfinding: log when we ignore one hop blinded route hints --- diff --git a/lightning/src/routing/router.rs b/lightning/src/routing/router.rs index 92e5dadf..184e3bcd 100644 --- a/lightning/src/routing/router.rs +++ b/lightning/src/routing/router.rs @@ -1781,6 +1781,7 @@ where L::Target: Logger { CandidateRouteHop::FirstHop { .. } => true, CandidateRouteHop::PrivateHop { .. } => true, CandidateRouteHop::Blinded { .. } => true, + CandidateRouteHop::OneHopBlinded { .. } => true, _ => false, };