Merge pull request #1220 from nymkappa/bugfix/fix-duplicate-indexing

Duplicated db blocks insertion attempts are expected
This commit is contained in:
softsimon 2022-02-10 16:23:07 +04:00 committed by GitHub
commit 877be47e5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();