From 06e35103602a8885f7a97d1460730882d8d94913 Mon Sep 17 00:00:00 2001 From: lateminer <9951982+lateminer@users.noreply.github.com> Date: Sat, 4 Nov 2023 01:05:08 +0100 Subject: [PATCH] logging: Add missing \n in PoSMiner() --- src/node/miner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/miner.cpp b/src/node/miner.cpp index 4a60d3b287..26643f532d 100644 --- a/src/node/miner.cpp +++ b/src/node/miner.cpp @@ -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; } }