Merge branch 'master' into nymkappa/bugfix/missing-closing-div
This commit is contained in:
commit
9fc753630a
@ -83,7 +83,7 @@ class NetworkSyncService {
|
|||||||
logger.info(`${progress} nodes updated. ${deletedSockets} sockets deleted`);
|
logger.info(`${progress} nodes updated. ${deletedSockets} sockets deleted`);
|
||||||
|
|
||||||
// If a channel if not present in the graph, mark it as inactive
|
// If a channel if not present in the graph, mark it as inactive
|
||||||
nodesApi.$setNodesInactive(graphNodesPubkeys);
|
await nodesApi.$setNodesInactive(graphNodesPubkeys);
|
||||||
|
|
||||||
if (config.MAXMIND.ENABLED) {
|
if (config.MAXMIND.ENABLED) {
|
||||||
$lookupNodeLocation();
|
$lookupNodeLocation();
|
||||||
@ -121,7 +121,7 @@ class NetworkSyncService {
|
|||||||
logger.info(`${progress} channels updated`);
|
logger.info(`${progress} channels updated`);
|
||||||
|
|
||||||
// If a channel if not present in the graph, mark it as inactive
|
// If a channel if not present in the graph, mark it as inactive
|
||||||
channelsApi.$setChannelsInactive(graphChannelsIds);
|
await channelsApi.$setChannelsInactive(graphChannelsIds);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
logger.err(`Cannot update channel list. Reason: ${(e instanceof Error ? e.message : e)}`);
|
logger.err(`Cannot update channel list. Reason: ${(e instanceof Error ? e.message : e)}`);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user