Skip to content

Commit

Permalink
add missing function name
Browse files Browse the repository at this point in the history
  • Loading branch information
backpacker69 committed Feb 27, 2019
1 parent db10205 commit 9fdfba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation.cpp
Expand Up @@ -1826,7 +1826,7 @@ bool CChainState::ConnectBlock(const CBlock& block, CValidationState& state, CBl
// peercoin: fees are not collected by miners as in bitcoin
// peercoin: fees are destroyed to compensate the entire network
if (gArgs.GetBoolArg("-printcreation", false))
LogPrintf("%s: destroy=%s nFees=%lld\n", FormatMoney(nFees), nFees);
LogPrintf("%s: destroy=%s nFees=%lld\n", __func__, FormatMoney(nFees), nFees);

if (!WriteUndoDataForBlock(blockundo, state, pindex, chainparams))
return false;
Expand Down

0 comments on commit 9fdfba4

Please sign in to comment.