server: stop interceptable switch in Stop

This commit is contained in:
Elle Mouton
2024-09-24 14:54:59 +09:00
committed by Oliver Gugger
parent 575d699917
commit 6df4f27929

View File

@@ -2380,6 +2380,10 @@ func (s *server) Stop() error {
if err := s.invoices.Stop(); err != nil {
srvrLog.Warnf("failed to stop invoices: %v", err)
}
if err := s.interceptableSwitch.Stop(); err != nil {
srvrLog.Warnf("failed to stop interceptable "+
"switch: %v", err)
}
if err := s.invoiceHtlcModifier.Stop(); err != nil {
srvrLog.Warnf("failed to stop htlc invoices "+
"modifier: %v", err)