Fix LN stats importer with new data "cleanupTopology" structure

This commit is contained in:
nymkappa
2022-08-19 18:07:26 +02:00
parent a0f5bc1deb
commit eb87828fc0
2 changed files with 24 additions and 12 deletions

View File

@@ -189,7 +189,7 @@ class Server {
await networkSyncService.$startService();
await lightningStatsUpdater.$startService();
} catch(e) {
logger.err(`Lightning backend crashed. Restarting in 1 minute. Reason: ${(e instanceof Error ? e.message : e)}`);
logger.err(`Nodejs lightning backend crashed. Restarting in 1 minute. Reason: ${(e instanceof Error ? e.message : e)}`);
await Common.sleep$(1000 * 60);
this.$runLightningBackend();
};