mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 10:21:52 +01:00
Handle empty pools table error
This commit is contained in:
parent
e451b40084
commit
ba12b10f9d
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user