@@ -65,15 +65,15 @@ static bool GetMasternodeTxOuts(const int nBlockHeight, const CAmount blockRewar
6565 voutMasternodePaymentsRet.clear ();
6666
6767 if (!GetBlockTxOuts (nBlockHeight, blockReward, voutMasternodePaymentsRet)) {
68- LogPrintf (" CMasternodePayments ::%s -- no payee (deterministic masternode list empty)\n " , __func__);
68+ LogPrintf (" MasternodePayments ::%s -- no payee (deterministic masternode list empty)\n " , __func__);
6969 return false ;
7070 }
7171
7272 for (const auto & txout : voutMasternodePaymentsRet) {
7373 CTxDestination dest;
7474 ExtractDestination (txout.scriptPubKey , dest);
7575
76- LogPrintf (" CMasternodePayments ::%s -- Masternode payment %lld to %s\n " , __func__, txout.nValue , EncodeDestination (dest));
76+ LogPrintf (" MasternodePayments ::%s -- Masternode payment %lld to %s\n " , __func__, txout.nValue , EncodeDestination (dest));
7777 }
7878
7979 return true ;
@@ -88,7 +88,7 @@ static bool IsTransactionValid(const CTransaction& txNew, const int nBlockHeight
8888
8989 std::vector<CTxOut> voutMasternodePayments;
9090 if (!GetBlockTxOuts (nBlockHeight, blockReward, voutMasternodePayments)) {
91- LogPrintf (" CMasternodePayments ::%s -- ERROR failed to get payees for block at height %s\n " , __func__, nBlockHeight);
91+ LogPrintf (" MasternodePayments ::%s -- ERROR failed to get payees for block at height %s\n " , __func__, nBlockHeight);
9292 return true ;
9393 }
9494
@@ -98,7 +98,7 @@ static bool IsTransactionValid(const CTransaction& txNew, const int nBlockHeight
9898 CTxDestination dest;
9999 if (!ExtractDestination (txout.scriptPubKey , dest))
100100 assert (false );
101- LogPrintf (" CMasternodePayments ::%s -- ERROR failed to find expected payee %s in block at height %s\n " , __func__, EncodeDestination (dest), nBlockHeight);
101+ LogPrintf (" MasternodePayments ::%s -- ERROR failed to find expected payee %s in block at height %s\n " , __func__, EncodeDestination (dest), nBlockHeight);
102102 return false ;
103103 }
104104 }
@@ -147,7 +147,7 @@ static bool IsOldBudgetBlockValueValid(const CMasternodeSync& mn_sync, const CBl
147147 return isBlockRewardValueMet;
148148}
149149
150- namespace CMasternodePayments {
150+ namespace MasternodePayments {
151151
152152/* *
153153* IsBlockValueValid
@@ -329,4 +329,4 @@ void FillBlockPayments(const CSporkManager& sporkManager, CGovernanceManager& go
329329 nBlockHeight, blockReward, voutMasternodeStr, txNew.ToString ());
330330}
331331
332- } // namespace CMasternodePayments
332+ } // namespace MasternodePayments
0 commit comments