don't throw when BlocksAuditRepositories.$saveAudit fails

This commit is contained in:
nymkappa
2023-06-07 18:04:21 +02:00
parent f95c16a78e
commit fd30bff9c6

View File

@@ -14,7 +14,6 @@ class BlocksAuditRepositories {
logger.debug(`Cannot save block audit for block ${audit.hash} because it has already been indexed, ignoring`);
} else {
logger.err(`Cannot save block audit into db. Reason: ` + (e instanceof Error ? e.message : e));
throw e;
}
}
}