Fix prism on bolt11 specific payment

This commit is contained in:
Kukks
2023-08-04 14:58:59 +02:00
parent 646554d5d6
commit 9fd89dffbb
4 changed files with 8 additions and 11 deletions

View File

@@ -46,8 +46,7 @@ public class WasabiCoordinatorStatusFetcher : PeriodicRunner, IWasabiBackendStat
catch (Exception e)
{
Connected = false;
_logger.LogError(e, "Could not connect to the coordinator");
throw;
throw new Exception("Could not connect to the coordinator", e);
}
}
}