Handle empty pools table error

This commit is contained in:
nymkappa 2022-04-07 18:14:28 +09:00
parent c1f011d64b
commit 4fcc56936d

View File

@ -135,6 +135,12 @@ class Blocks {
} else {
pool = await poolsRepository.$getUnknownPool();
}
if (!pool) { // Something is wrong with the pools table, ignore pool indexing
logger.err('Unable to find pool, nor getting the unknown pool. Is the "pools" table empty?');
return blockExtended;
}
blockExtended.extras.pool = {
id: pool.id,
name: pool.name,