From 710eb72c4e4b5904096bfc7ed03fa5813903d3f7 Mon Sep 17 00:00:00 2001 From: Nico Lucciola Date: Fri, 19 Jul 2019 17:00:59 +0200 Subject: [PATCH] Fixed LogPrint line to not throw compiler errors --- src/masternode-payments.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/masternode-payments.cpp b/src/masternode-payments.cpp index f16a7e8b..05ceb869 100644 --- a/src/masternode-payments.cpp +++ b/src/masternode-payments.cpp @@ -145,8 +145,7 @@ void FillBlockPayments(CMutableTransaction& txNew, int nBlockHeight, CAmount blo // FILL BLOCK PAYEE WITH MASTERNODE PAYMENT OTHERWISE mnpayments.FillBlockPayee(txNew, nBlockHeight, blockReward, txoutMasternodeRet); - LogPrint(MCLog::MN, "FillBlockPayments -- nBlockHeight %d blockReward %lld txoutMasternodeRet %s txNew %s", - // nBlockHeight, blockReward, txoutMasternodeRet.ToString(), txNew.GetHash()); + LogPrint(MCLog::MN, "FillBlockPayments -- nBlockHeight %d blockReward %lld txoutMasternodeRet %s txNew %s", nBlockHeight, blockReward, txoutMasternodeRet.ToString(), txNew.GetHash().ToString()); } std::string GetRequiredPaymentsString(int nBlockHeight)