Skip to content

Commit

Permalink
Merge pull request #2518 from iFoggz/BalanceToConsiderStaking
Browse files Browse the repository at this point in the history
Miner Logger bug fix
  • Loading branch information
jamescowens authored May 29, 2022
2 parents ff92de9 + 4c50557 commit 60df93e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ bool CWallet::SelectCoinsForStaking(unsigned int nSpendTime, std::vector<pair<co
if (LogInstance().WillLogCategory(BCLog::LogFlags::MINER) && fMiner)
{
LogPrintf("SelectCoinsForStaking: UTXO=%s (BalanceToConsider=%.8f >= Value=%.8f)",
pcoin->vout[i].GetHash().ToString(),
pcoin->GetHash().ToString(),
BalanceToConsider / (double) COIN,
pcoin->vout[i].nValue / (double) COIN);
}
Expand Down

0 comments on commit 60df93e

Please sign in to comment.