Skip to content

Commit

Permalink
Fixed LogPrint line to not throw compiler errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico205 committed Jul 19, 2019
1 parent 446da6b commit 710eb72
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/masternode-payments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 710eb72

Please sign in to comment.