Duplicated db blocks insertion attempts are expected

This commit is contained in:
nymkappa 2022-02-05 15:50:57 +09:00
parent 1ada92f03e
commit 12b53d9ace
No known key found for this signature in database
GPG key ID: E155910B16E8BD04

View file

@ -46,8 +46,12 @@ class BlocksRepository {
];
await connection.query(query, params);
} catch (e) {
logger.err('$saveBlockInDatabase() error' + (e instanceof Error ? e.message : e));
} catch (e: any) {
if (e.errno === 1062) { // ER_DUP_ENTRY
logger.debug(`$saveBlockInDatabase() - Block ${block.height} has already been indexed, ignoring`);
} else {
logger.err('$saveBlockInDatabase() error' + (e instanceof Error ? e.message : e));
}
}
connection.release();