From b1bdb528512c3276c2351397e29615b4dda71aea Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 28 Jul 2023 23:39:33 +0900 Subject: [PATCH] ops: Fix a classic typo in mempool clear protection log print --- backend/src/api/mempool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/mempool.ts b/backend/src/api/mempool.ts index 945b78738..e822ba329 100644 --- a/backend/src/api/mempool.ts +++ b/backend/src/api/mempool.ts @@ -274,7 +274,7 @@ class Mempool { logger.warn(`Mempool clear protection triggered because transactions.length: ${transactions.length} and currentMempoolSize: ${currentMempoolSize}.`); setTimeout(() => { this.mempoolProtection = 2; - logger.warn('Mempool clear protection resumed.'); + logger.warn('Mempool clear protection ended, normal operation resumed.'); }, 1000 * 60 * config.MEMPOOL.CLEAR_PROTECTION_MINUTES); }