ops: Fix a classic typo in mempool clear protection log print

This commit is contained in:
wiz 2023-07-28 23:39:33 +09:00
parent d52e2cd585
commit b1bdb52851
No known key found for this signature in database
GPG key ID: A394E332255A6173

View file

@ -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);
}