Wrap statistics db ops with try/catch

This commit is contained in:
nymkappa 2022-01-24 16:22:38 +09:00
parent 230f563235
commit a805c86697
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04

View File

@ -53,6 +53,7 @@ class Statistics {
memPoolArray = memPoolArray.filter((tx) => tx.effectiveFeePerVsize); memPoolArray = memPoolArray.filter((tx) => tx.effectiveFeePerVsize);
if (!memPoolArray.length) { if (!memPoolArray.length) {
try {
const insertIdZeroed = await this.$createZeroedStatistic(); const insertIdZeroed = await this.$createZeroedStatistic();
if (this.newStatisticsEntryCallback && insertIdZeroed) { if (this.newStatisticsEntryCallback && insertIdZeroed) {
const newStats = await this.$get(insertIdZeroed); const newStats = await this.$get(insertIdZeroed);
@ -60,6 +61,9 @@ class Statistics {
this.newStatisticsEntryCallback(newStats); this.newStatisticsEntryCallback(newStats);
} }
} }
} catch (e) {
logger.err('Unable to insert zeroed statistics. ' + e);
}
return; return;
} }
@ -90,6 +94,7 @@ class Statistics {
} }
}); });
try {
const insertId = await this.$create({ const insertId = await this.$create({
added: 'NOW()', added: 'NOW()',
unconfirmed_transactions: memPoolArray.length, unconfirmed_transactions: memPoolArray.length,
@ -144,6 +149,9 @@ class Statistics {
this.newStatisticsEntryCallback(newStats); this.newStatisticsEntryCallback(newStats);
} }
} }
} catch (e) {
logger.err('Unable to insert statistics. ' + e);
}
} }
private async $createZeroedStatistic(): Promise<number | undefined> { private async $createZeroedStatistic(): Promise<number | undefined> {