server: stop interceptable switch in Stop

This commit is contained in:
Elle Mouton 2024-09-24 14:54:59 +09:00
parent 0bd76ffe32
commit f1015cd58d
No known key found for this signature in database
GPG Key ID: D7D916376026F177

View File

@ -2411,6 +2411,10 @@ func (s *server) Stop() error {
if err := s.invoices.Stop(); err != nil { if err := s.invoices.Stop(); err != nil {
srvrLog.Warnf("failed to stop invoices: %v", err) 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 { if err := s.invoiceHtlcModifier.Stop(); err != nil {
srvrLog.Warnf("failed to stop htlc invoices "+ srvrLog.Warnf("failed to stop htlc invoices "+
"modifier: %v", err) "modifier: %v", err)