From 242515fd63197a68e0750147848c90c6995953f4 Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Wed, 20 Mar 2019 10:32:08 -0400 Subject: [PATCH] LogPrints need \n --- src/wallet/wallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 08c6ad3ff3..da825a2b71 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2814,7 +2814,7 @@ bool fillBlindDetails(BlindDetails* det, CWallet* wallet, CMutableTransaction& t det->o_pubkeys[det->only_recipient_blind_index] = CPubKey(); det->o_amount_blinds[det->only_recipient_blind_index] = uint256(); det->o_asset_blinds[det->only_recipient_blind_index] = uint256(); - wallet->WalletLogPrintf("Unblinding single blinded output at index %d due to lack of inputs and other outputs being blinded.", det->only_recipient_blind_index); + wallet->WalletLogPrintf("Unblinding single blinded output at index %d due to lack of inputs and other outputs being blinded.\n", det->only_recipient_blind_index); } else { strFailReason = _("Transaction output could not be blinded as there are no blinded inputs and no other blinded outputs."); return false; @@ -3551,7 +3551,7 @@ bool CWallet::CreateTransaction(const std::vector& vecSend, CTransac tx->vout[i].nAsset.IsExplicit() ? "explicit" : "blinded" ); } - WalletLogPrintf(summary); + WalletLogPrintf(summary+"\n"); } }