Merge branch 'master' into nymkappa/bugfix/handle-esplora-error

This commit is contained in:
wiz
2022-08-23 23:08:13 +09:00
committed by GitHub
17 changed files with 361 additions and 84 deletions

View File

@@ -98,7 +98,7 @@ class NetworkSyncService {
const [closedChannelsRaw]: any[] = await DB.query(`SELECT id FROM channels WHERE status = 2`);
const closedChannels = {};
for (const closedChannel of closedChannelsRaw) {
closedChannels[Common.channelShortIdToIntegerId(closedChannel.id)] = true;
closedChannels[closedChannel.id] = true;
}
let progress = 0;