diff --git a/swap/service.go b/swap/service.go index 7065d9fc..e58c320d 100644 --- a/swap/service.go +++ b/swap/service.go @@ -354,6 +354,9 @@ func (s *SwapService) OnTxConfirmed(swapId string, txHex string, gotErr error) e // OnCsvPassed sends the csvpassed event to the corresponding swap func (s *SwapService) OnCsvPassed(swapId string) error { swap, err := s.GetActiveSwap(swapId) + if errors.Is(err, ErrSwapDoesNotExist) { + return nil + } if err != nil { return err }