diff --git a/src/governance-classes.h b/src/governance-classes.h index b75454675917c..bb6aa0d452555 100644 --- a/src/governance-classes.h +++ b/src/governance-classes.h @@ -12,8 +12,6 @@ #include "script/standard.h" #include "util.h" -#include - class CSuperblock; class CGovernanceTrigger; class CGovernanceTriggerManager; @@ -22,7 +20,7 @@ class CSuperblockManager; static const int TRIGGER_UNKNOWN = -1; static const int TRIGGER_SUPERBLOCK = 1000; -typedef boost::shared_ptr CSuperblock_sptr; +typedef std::shared_ptr CSuperblock_sptr; // DECLARE GLOBAL VARIABLES FOR GOVERNANCE CLASSES extern CGovernanceTriggerManager triggerman; diff --git a/src/governance-object.cpp b/src/governance-object.cpp index 8ef5bf56dd33b..890c1c14db8f3 100644 --- a/src/governance-object.cpp +++ b/src/governance-object.cpp @@ -15,6 +15,7 @@ #include "util.h" #include +#include CGovernanceObject::CGovernanceObject(): cs(), @@ -225,8 +226,8 @@ std::string CGovernanceObject::GetSignatureMessage() const { LOCK(cs); std::string strMessage = nHashParent.ToString() + "|" + - boost::lexical_cast(nRevision) + "|" + - boost::lexical_cast(nTime) + "|" + + std::to_string(nRevision) + "|" + + std::to_string(nTime) + "|" + GetDataAsHexString() + "|" + masternodeOutpoint.ToStringShort() + "|" + nCollateralHash.ToString(); diff --git a/src/governance-vote.cpp b/src/governance-vote.cpp index 815497a978dea..f20760fcb9045 100644 --- a/src/governance-vote.cpp +++ b/src/governance-vote.cpp @@ -9,8 +9,6 @@ #include "messagesigner.h" #include "util.h" -#include - std::string CGovernanceVoting::ConvertOutcomeToString(vote_outcome_enum_t nOutcome) { switch(nOutcome) @@ -173,7 +171,7 @@ bool CGovernanceVote::Sign(const CKey& keyMasternode, const CPubKey& pubKeyMaste } else { std::string strMessage = masternodeOutpoint.ToStringShort() + "|" + nParentHash.ToString() + "|" + - boost::lexical_cast(nVoteSignal) + "|" + boost::lexical_cast(nVoteOutcome) + "|" + boost::lexical_cast(nTime); + std::to_string(nVoteSignal) + "|" + std::to_string(nVoteOutcome) + "|" + std::to_string(nTime); if(!CMessageSigner::SignMessage(strMessage, vchSig, keyMasternode)) { LogPrintf("CGovernanceVote::Sign -- SignMessage() failed\n"); @@ -199,9 +197,9 @@ bool CGovernanceVote::CheckSignature(const CPubKey& pubKeyMasternode) const if (!CHashSigner::VerifyHash(hash, pubKeyMasternode, vchSig, strError)) { // could be a signature in old format std::string strMessage = masternodeOutpoint.ToStringShort() + "|" + nParentHash.ToString() + "|" + - boost::lexical_cast(nVoteSignal) + "|" + - boost::lexical_cast(nVoteOutcome) + "|" + - boost::lexical_cast(nTime); + std::to_string(nVoteSignal) + "|" + + std::to_string(nVoteOutcome) + "|" + + std::to_string(nTime); if(!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { // nope, not in old format either @@ -211,9 +209,9 @@ bool CGovernanceVote::CheckSignature(const CPubKey& pubKeyMasternode) const } } else { std::string strMessage = masternodeOutpoint.ToStringShort() + "|" + nParentHash.ToString() + "|" + - boost::lexical_cast(nVoteSignal) + "|" + - boost::lexical_cast(nVoteOutcome) + "|" + - boost::lexical_cast(nTime); + std::to_string(nVoteSignal) + "|" + + std::to_string(nVoteOutcome) + "|" + + std::to_string(nTime); if(!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrint("gobject", "CGovernanceVote::IsValid -- VerifyMessage() failed, error: %s\n", strError); diff --git a/src/governance-vote.h b/src/governance-vote.h index 19909e49c0035..3b851cad2222e 100644 --- a/src/governance-vote.h +++ b/src/governance-vote.h @@ -8,8 +8,6 @@ #include "key.h" #include "primitives/transaction.h" -#include - class CGovernanceVote; class CConnman; diff --git a/src/masternode-payments.cpp b/src/masternode-payments.cpp index 73c97c24c5942..df8e78982f2c5 100644 --- a/src/masternode-payments.cpp +++ b/src/masternode-payments.cpp @@ -14,7 +14,7 @@ #include "spork.h" #include "util.h" -#include +#include /** Object for who's going to get paid on which blocks */ CMasternodePayments mnpayments; @@ -455,7 +455,7 @@ bool CMasternodePaymentVote::Sign() } } else { std::string strMessage = masternodeOutpoint.ToStringShort() + - boost::lexical_cast(nBlockHeight) + + std::to_string(nBlockHeight) + ScriptToAsmStr(payee); if(!CMessageSigner::SignMessage(strMessage, vchSig, activeMasternode.keyMasternode)) { @@ -905,7 +905,7 @@ bool CMasternodePaymentVote::CheckSignature(const CPubKey& pubKeyMasternode, int if (!CHashSigner::VerifyHash(hash, pubKeyMasternode, vchSig, strError)) { // could be a signature in old format std::string strMessage = masternodeOutpoint.ToStringShort() + - boost::lexical_cast(nBlockHeight) + + std::to_string(nBlockHeight) + ScriptToAsmStr(payee); if(!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { // nope, not in old format either @@ -921,7 +921,7 @@ bool CMasternodePaymentVote::CheckSignature(const CPubKey& pubKeyMasternode, int } } else { std::string strMessage = masternodeOutpoint.ToStringShort() + - boost::lexical_cast(nBlockHeight) + + std::to_string(nBlockHeight) + ScriptToAsmStr(payee); if (!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { diff --git a/src/masternode.cpp b/src/masternode.cpp index d1a7628e0e444..024a9aa904889 100644 --- a/src/masternode.cpp +++ b/src/masternode.cpp @@ -18,7 +18,7 @@ #include "wallet/wallet.h" #endif // ENABLE_WALLET -#include +#include CMasternode::CMasternode() : @@ -640,9 +640,9 @@ bool CMasternodeBroadcast::Sign(const CKey& keyCollateralAddress) return false; } } else { - std::string strMessage = addr.ToString(false) + boost::lexical_cast(sigTime) + + std::string strMessage = addr.ToString(false) + std::to_string(sigTime) + pubKeyCollateralAddress.GetID().ToString() + pubKeyMasternode.GetID().ToString() + - boost::lexical_cast(nProtocolVersion); + std::to_string(nProtocolVersion); if (!CMessageSigner::SignMessage(strMessage, vchSig, keyCollateralAddress)) { LogPrintf("CMasternodeBroadcast::Sign -- SignMessage() failed\n"); @@ -668,9 +668,9 @@ bool CMasternodeBroadcast::CheckSignature(int& nDos) const if (!CHashSigner::VerifyHash(hash, pubKeyCollateralAddress, vchSig, strError)) { // maybe it's in old format - std::string strMessage = addr.ToString(false) + boost::lexical_cast(sigTime) + + std::string strMessage = addr.ToString(false) + std::to_string(sigTime) + pubKeyCollateralAddress.GetID().ToString() + pubKeyMasternode.GetID().ToString() + - boost::lexical_cast(nProtocolVersion); + std::to_string(nProtocolVersion); if (!CMessageSigner::VerifyMessage(pubKeyCollateralAddress, vchSig, strMessage, strError)){ // nope, not in old format either @@ -680,9 +680,9 @@ bool CMasternodeBroadcast::CheckSignature(int& nDos) const } } } else { - std::string strMessage = addr.ToString(false) + boost::lexical_cast(sigTime) + + std::string strMessage = addr.ToString(false) + std::to_string(sigTime) + pubKeyCollateralAddress.GetID().ToString() + pubKeyMasternode.GetID().ToString() + - boost::lexical_cast(nProtocolVersion); + std::to_string(nProtocolVersion); if (!CMessageSigner::VerifyMessage(pubKeyCollateralAddress, vchSig, strMessage, strError)){ LogPrintf("CMasternodeBroadcast::CheckSignature -- Got bad Masternode announce signature, error: %s\n", strError); @@ -762,7 +762,7 @@ bool CMasternodePing::Sign(const CKey& keyMasternode, const CPubKey& pubKeyMaste } } else { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + blockHash.ToString() + - boost::lexical_cast(sigTime); + std::to_string(sigTime); if (!CMessageSigner::SignMessage(strMessage, vchSig, keyMasternode)) { LogPrintf("CMasternodePing::Sign -- SignMessage() failed\n"); @@ -788,7 +788,7 @@ bool CMasternodePing::CheckSignature(const CPubKey& pubKeyMasternode, int &nDos) if (!CHashSigner::VerifyHash(hash, pubKeyMasternode, vchSig, strError)) { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + blockHash.ToString() + - boost::lexical_cast(sigTime); + std::to_string(sigTime); if (!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrintf("CMasternodePing::CheckSignature -- Got bad Masternode ping signature, masternode=%s, error: %s\n", masternodeOutpoint.ToStringShort(), strError); @@ -798,7 +798,7 @@ bool CMasternodePing::CheckSignature(const CPubKey& pubKeyMasternode, int &nDos) } } else { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + blockHash.ToString() + - boost::lexical_cast(sigTime); + std::to_string(sigTime); if (!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrintf("CMasternodePing::CheckSignature -- Got bad Masternode ping signature, masternode=%s, error: %s\n", masternodeOutpoint.ToStringShort(), strError); diff --git a/src/privatesend.cpp b/src/privatesend.cpp index ec16dead5d980..42852d49f8263 100644 --- a/src/privatesend.cpp +++ b/src/privatesend.cpp @@ -19,7 +19,7 @@ #include "util.h" #include "utilmoneystr.h" -#include +#include bool CDarkSendEntry::AddScriptSig(const CTxIn& txin) { @@ -62,9 +62,9 @@ bool CDarksendQueue::Sign() } } else { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + - boost::lexical_cast(nDenom) + - boost::lexical_cast(nTime) + - boost::lexical_cast(fReady); + std::to_string(nDenom) + + std::to_string(nTime) + + std::to_string(fReady); if(!CMessageSigner::SignMessage(strMessage, vchSig, activeMasternode.keyMasternode)) { LogPrintf("CDarksendQueue::Sign -- SignMessage() failed, %s\n", ToString()); @@ -94,9 +94,9 @@ bool CDarksendQueue::CheckSignature(const CPubKey& pubKeyMasternode) const } } else { std::string strMessage = CTxIn(masternodeOutpoint).ToString() + - boost::lexical_cast(nDenom) + - boost::lexical_cast(nTime) + - boost::lexical_cast(fReady); + std::to_string(nDenom) + + std::to_string(nTime) + + std::to_string(fReady); if(!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrintf("CDarksendQueue::CheckSignature -- Got bad Masternode queue signature: %s; error: %s\n", ToString(), strError); @@ -141,7 +141,7 @@ bool CDarksendBroadcastTx::Sign() return false; } } else { - std::string strMessage = tx->GetHash().ToString() + boost::lexical_cast(sigTime); + std::string strMessage = tx->GetHash().ToString() + std::to_string(sigTime); if(!CMessageSigner::SignMessage(strMessage, vchSig, activeMasternode.keyMasternode)) { LogPrintf("CDarksendBroadcastTx::Sign -- SignMessage() failed\n"); @@ -170,7 +170,7 @@ bool CDarksendBroadcastTx::CheckSignature(const CPubKey& pubKeyMasternode) const return false; } } else { - std::string strMessage = tx->GetHash().ToString() + boost::lexical_cast(sigTime); + std::string strMessage = tx->GetHash().ToString() + std::to_string(sigTime); if(!CMessageSigner::VerifyMessage(pubKeyMasternode, vchSig, strMessage, strError)) { LogPrintf("CDarksendBroadcastTx::CheckSignature -- Got bad dstx signature, error: %s\n", strError); diff --git a/src/spork.cpp b/src/spork.cpp index c6b4e653e8a85..a00f6f7536c6f 100644 --- a/src/spork.cpp +++ b/src/spork.cpp @@ -11,7 +11,7 @@ #include "net_processing.h" #include "netmessagemaker.h" -#include +#include CSporkManager sporkManager; @@ -262,7 +262,7 @@ bool CSporkMessage::Sign(const CKey& key) return false; } } else { - std::string strMessage = boost::lexical_cast(nSporkID) + boost::lexical_cast(nValue) + boost::lexical_cast(nTimeSigned); + std::string strMessage = std::to_string(nSporkID) + std::to_string(nValue) + std::to_string(nTimeSigned); if(!CMessageSigner::SignMessage(strMessage, vchSig, key)) { LogPrintf("CSporkMessage::Sign -- SignMessage() failed\n"); @@ -292,7 +292,7 @@ bool CSporkMessage::CheckSignature(const CKeyID& pubKeyId) const return false; } } else { - std::string strMessage = boost::lexical_cast(nSporkID) + boost::lexical_cast(nValue) + boost::lexical_cast(nTimeSigned); + std::string strMessage = std::to_string(nSporkID) + std::to_string(nValue) + std::to_string(nTimeSigned); if (!CMessageSigner::VerifyMessage(pubKeyId, vchSig, strMessage, strError)){ // Note: unlike for other messages we have to check for new format even with SPORK_6_NEW_SIGS