From 5b0a2f56cdd3021ad76cfaa0c3016a3cfd100587 Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Mon, 28 Oct 2024 15:05:32 +0700 Subject: [PATCH] fix: string in credit pool logs 'previous' is renamed to recently unlocked --- src/evo/creditpool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evo/creditpool.cpp b/src/evo/creditpool.cpp index cfbea96e5d..66fb9a75fd 100644 --- a/src/evo/creditpool.cpp +++ b/src/evo/creditpool.cpp @@ -187,7 +187,7 @@ CCreditPool CCreditPoolManager::ConstructCreditPool(const CBlockIndex* const blo assert(currentLimit >= 0); if (currentLimit > 0 || latelyUnlocked > 0 || locked > 0) { - LogPrint(BCLog::CREDITPOOL, "CCreditPoolManager: asset unlock limits on height: %d locked: %d.%08d limit: %d.%08d previous: %d.%08d\n", + LogPrint(BCLog::CREDITPOOL, "CCreditPoolManager: asset unlock limits on height: %d locked: %d.%08d limit: %d.%08d unlocked-in-window: %d.%08d\n", block_index->nHeight, locked / COIN, locked % COIN, currentLimit / COIN, currentLimit % COIN, latelyUnlocked / COIN, latelyUnlocked % COIN);