From 6cfb052d986a9007c46d7b84e88b9cc528a29270 Mon Sep 17 00:00:00 2001 From: Valentine Wallace Date: Tue, 12 Sep 2023 14:55:36 -0400 Subject: [PATCH] Pathfinding: log when we ignore one hop blinded route hints --- lightning/src/routing/router.rs | 1 + 1 file changed, 1 insertion(+) 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, }; -- 2.30.2