Skip to content

Commit

Permalink
logging: Add missing \n in PoSMiner()
Browse files Browse the repository at this point in the history
  • Loading branch information
lateminer committed Nov 4, 2023
1 parent 1250f54 commit 06e3510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/miner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ void PoSMiner(wallet::CWallet *pwallet)
LOCK2(pwallet->cs_wallet, cs_main);
if (!SignBlock(*pblock, *pwallet))
{
pwallet->WalletLogPrintf("PoSMiner: failed to sign PoS block");
pwallet->WalletLogPrintf("PoSMiner: failed to sign PoS block\n");
continue;
}
}
Expand Down

0 comments on commit 06e3510

Please sign in to comment.