From 8b1d9c92487d16ee062f5b2885f178814685f784 Mon Sep 17 00:00:00 2001 From: ffranr Date: Tue, 9 Apr 2024 14:13:09 +0100 Subject: [PATCH] htlcswitch: add missing method doc --- htlcswitch/interceptable_switch.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htlcswitch/interceptable_switch.go b/htlcswitch/interceptable_switch.go index 62f7c93dd..2f180e257 100644 --- a/htlcswitch/interceptable_switch.go +++ b/htlcswitch/interceptable_switch.go @@ -363,6 +363,8 @@ func (s *InterceptableSwitch) setInterceptor(interceptor ForwardInterceptor) { }) } +// resolve processes a HTLC given the resolution type specified by the +// intercepting client. func (s *InterceptableSwitch) resolve(res *FwdResolution) error { intercepted, err := s.heldHtlcSet.pop(res.Key) if err != nil {