Merge pull request #2599 from mempool/nymkappa/bugfix/log-counter

Increment log counter in `Building partial channels` log
This commit is contained in:
wiz 2022-10-17 04:35:09 +09:00 committed by GitHub
commit ee6766e34c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,6 +70,8 @@ export async function convertAndmergeBidirectionalChannels(clChannels: any[]): P
logger.info(`Building partial channels from clightning output. Channels processed: ${channelProcessed + 1} of ${keys.length}`);
loggerTimer = new Date().getTime() / 1000;
}
channelProcessed++;
}
return consolidatedChannelList;