mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
style: apply clang-format
This commit is contained in:
parent
ef6190e434
commit
a51ade5cc9
@ -187,10 +187,11 @@ CCreditPool CCreditPoolManager::ConstructCreditPool(const CBlockIndex* const blo
|
|||||||
assert(currentLimit >= 0);
|
assert(currentLimit >= 0);
|
||||||
|
|
||||||
if (currentLimit > 0 || latelyUnlocked > 0 || locked > 0) {
|
if (currentLimit > 0 || latelyUnlocked > 0 || locked > 0) {
|
||||||
LogPrint(BCLog::CREDITPOOL, "CCreditPoolManager: asset unlock limits on height: %d locked: %d.%08d limit: %d.%08d unlocked-in-window: %d.%08d\n",
|
LogPrint(BCLog::CREDITPOOL, /* Continued */
|
||||||
block_index->nHeight, locked / COIN, locked % COIN,
|
"CCreditPoolManager: asset unlock limits on height: %d locked: %d.%08d limit: %d.%08d "
|
||||||
currentLimit / COIN, currentLimit % COIN,
|
"unlocked-in-window: %d.%08d\n",
|
||||||
latelyUnlocked / COIN, latelyUnlocked % COIN);
|
block_index->nHeight, locked / COIN, locked % COIN, currentLimit / COIN, currentLimit % COIN,
|
||||||
|
latelyUnlocked / COIN, latelyUnlocked % COIN);
|
||||||
}
|
}
|
||||||
|
|
||||||
CCreditPool pool{locked, currentLimit, latelyUnlocked, indexes};
|
CCreditPool pool{locked, currentLimit, latelyUnlocked, indexes};
|
||||||
|
Loading…
Reference in New Issue
Block a user