From e7e7b30807db3fcdc4b0b29a5913fad0548736ca Mon Sep 17 00:00:00 2001 From: nymkappa <1612910616@pm.me> Date: Tue, 30 May 2023 10:16:56 -0700 Subject: [PATCH] fix log --- backend/src/api/database-migration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/database-migration.ts b/backend/src/api/database-migration.ts index 21c87f9e2..2b1e5ea8e 100644 --- a/backend/src/api/database-migration.ts +++ b/backend/src/api/database-migration.ts @@ -1039,7 +1039,7 @@ class DatabaseMigration { } public async $blocksReindexingTruncate(): Promise { - logger.warn(`Truncating pools, blocks and hashrates for re-indexing (using '--reindex-blocks'). You can cancel this command within 5 seconds`); + logger.warn(`Truncating pools, blocks, hashrates and difficulty_adjustments tables for re-indexing (using '--reindex-blocks'). You can cancel this command within 5 seconds`); await Common.sleep$(5000); await this.$executeQuery(`TRUNCATE blocks`);