2016-02-02 16:28:56 +01:00
// Copyright (c) 2014-2016 The Dash Core developers
2015-04-16 21:58:09 +02:00
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
# include "masternode-payments.h"
2016-04-15 04:54:11 +02:00
# include "governance.h"
2015-07-15 04:44:58 +02:00
# include "masternode-sync.h"
2015-04-16 21:58:09 +02:00
# include "masternodeman.h"
# include "darksend.h"
# include "util.h"
# include "sync.h"
2015-05-30 19:27:51 +02:00
# include "spork.h"
2015-04-16 21:58:09 +02:00
# include "addrman.h"
# include <boost/lexical_cast.hpp>
2015-07-21 04:24:43 +02:00
# include <boost/filesystem.hpp>
2015-04-16 21:58:09 +02:00
/** Object for who's going to get paid on which blocks */
2016-02-04 20:29:09 +01:00
CMasternodePayments mnpayments ;
2015-07-21 04:24:43 +02:00
2015-07-29 17:28:49 +02:00
CCriticalSection cs_vecPayments ;
CCriticalSection cs_mapMasternodeBlocks ;
CCriticalSection cs_mapMasternodePayeeVotes ;
2016-01-24 05:21:14 +01:00
bool IsBlockValueValid ( const CBlock & block , CAmount nExpectedValue ) {
2015-07-04 16:49:49 +02:00
int nHeight = 0 ;
2016-03-02 21:57:24 +01:00
2015-07-04 16:49:49 +02:00
{
2016-03-02 21:57:24 +01:00
LOCK ( cs_main ) ;
if ( ! chainActive . Tip ( ) ) return true ;
2015-07-04 16:49:49 +02:00
2016-03-02 21:57:24 +01:00
if ( chainActive . Tip ( ) - > GetBlockHash ( ) = = block . hashPrevBlock )
{
nHeight = chainActive . Tip ( ) - > nHeight + 1 ;
} else { //out of order
BlockMap : : iterator mi = mapBlockIndex . find ( block . hashPrevBlock ) ;
if ( mi ! = mapBlockIndex . end ( ) & & ( * mi ) . second )
nHeight = ( * mi ) . second - > nHeight + 1 ;
}
}
2015-07-04 16:49:49 +02:00
if ( nHeight = = 0 ) {
LogPrintf ( " IsBlockValueValid() : WARNING: Couldn't find previous block " ) ;
}
2015-07-17 05:03:42 +02:00
if ( ! masternodeSync . IsSynced ( ) ) { //there is no budget data to use to check anything
2016-02-17 17:29:36 +01:00
//super blocks will always be on these blocks, max Params().GetConsensus().nBudgetPaymentsWindowBlocks per budgeting
2016-03-06 15:37:32 +01:00
if ( nHeight > = Params ( ) . GetConsensus ( ) . nBudgetPaymentsStartBlock & &
nHeight % Params ( ) . GetConsensus ( ) . nBudgetPaymentsCycleBlocks < Params ( ) . GetConsensus ( ) . nBudgetPaymentsWindowBlocks ) {
2015-05-30 19:27:51 +02:00
return true ;
} else {
2015-07-04 16:49:49 +02:00
if ( block . vtx [ 0 ] . GetValueOut ( ) > nExpectedValue ) return false ;
2015-05-30 19:27:51 +02:00
}
2015-07-02 01:46:03 +02:00
} else { // we're synced and have data so check the budget schedule
2015-08-11 23:54:42 +02:00
//are these blocks even enabled
2016-07-30 13:04:27 +02:00
if ( ! sporkManager . IsSporkActive ( SPORK_13_ENABLE_SUPERBLOCKS ) ) {
2015-08-11 23:54:42 +02:00
return block . vtx [ 0 ] . GetValueOut ( ) < = nExpectedValue ;
}
2016-07-30 13:04:27 +02:00
2016-04-15 04:54:11 +02:00
// 12.1
// if(nHeight >= Params().GetConsensus().nBudgetPaymentsStartBlock &&
// budget.IsBudgetPaymentBlock(nHeight)){
// //the value of the block is evaluated in CheckBlock
// return true;
// } else {
// if(block.vtx[0].GetValueOut() > nExpectedValue) return false;
// }
2015-05-30 19:27:51 +02:00
}
return true ;
}
2015-07-17 17:07:07 +02:00
bool IsBlockPayeeValid ( const CTransaction & txNew , int nBlockHeight )
2015-05-04 17:04:09 +02:00
{
2015-07-18 15:46:54 +02:00
if ( ! masternodeSync . IsSynced ( ) ) { //there is no budget data to use to check anything -- find the longest chain
2015-07-31 17:46:47 +02:00
LogPrint ( " mnpayments " , " Client not synced, skipping block payee checks \n " ) ;
2015-07-18 15:46:54 +02:00
return true ;
}
2015-05-04 17:04:09 +02:00
//check if it's a budget block
2016-07-30 13:04:27 +02:00
// 12.1
// if(sporkManager.IsSporkActive(SPORK_13_ENABLE_SUPERBLOCKS)){
2016-04-15 04:54:11 +02:00
// if(budget.IsBudgetPaymentBlock(nBlockHeight)){
// if(budget.IsTransactionValid(txNew, nBlockHeight)){
// return true;
// } else {
2016-07-30 13:04:27 +02:00
// LogPrintf("Invalid budget payment detected %s", txNew.ToString());
// if(sporkManager.IsSporkActive(SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT)){
2016-04-15 04:54:11 +02:00
// return false;
// } else {
// LogPrintf("Budget enforcement is disabled, accepting block\n");
// return true;
// }
// }
// }
// }
2015-05-04 17:04:09 +02:00
//check for masternode payee
2016-02-04 20:29:09 +01:00
if ( mnpayments . IsTransactionValid ( txNew , nBlockHeight ) )
2015-05-04 17:04:09 +02:00
{
return true ;
2015-05-30 19:27:51 +02:00
} else {
2016-07-30 13:04:27 +02:00
LogPrintf ( " Invalid mn payment detected %s " , txNew . ToString ( ) ) ;
if ( sporkManager . IsSporkActive ( SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT ) ) {
2015-05-30 19:27:51 +02:00
return false ;
} else {
2015-06-23 22:44:20 +02:00
LogPrintf ( " Masternode payment enforcement is disabled, accepting block \n " ) ;
2015-05-30 19:27:51 +02:00
return true ;
}
2015-05-04 17:04:09 +02:00
}
return false ;
}
2015-05-30 19:27:51 +02:00
2016-01-24 05:21:14 +01:00
void FillBlockPayee ( CMutableTransaction & txNew , CAmount nFees )
2015-05-30 19:27:51 +02:00
{
2016-03-07 11:18:06 +01:00
AssertLockHeld ( cs_main ) ;
2016-03-02 21:26:45 +01:00
if ( ! chainActive . Tip ( ) ) return ;
2015-06-25 17:17:53 +02:00
2016-04-15 04:54:11 +02:00
// 12.1
2016-07-30 13:04:27 +02:00
// if(sporkManager.IsSporkActive(SPORK_13_ENABLE_SUPERBLOCKS) && budget.IsBudgetPaymentBlock(chainActive.Tip()->nHeight+1)){
2016-04-15 04:54:11 +02:00
// budget.FillBlockPayee(txNew, nFees);
// } else {
// mnpayments.FillBlockPayee(txNew, nFees);
// }
2016-05-27 00:04:15 +02:00
mnpayments . FillBlockPayee ( txNew , nFees ) ;
2015-05-30 19:27:51 +02:00
}
2015-07-17 17:07:07 +02:00
std : : string GetRequiredPaymentsString ( int nBlockHeight )
2015-05-26 16:56:51 +02:00
{
2016-05-24 23:16:42 +02:00
// 12.1 -- added triggered payments
2016-07-30 13:04:27 +02:00
// if(sporkManager.IsSporkActive(SPORK_13_ENABLE_SUPERBLOCKS) && budget.IsBudgetPaymentBlock(nBlockHeight)){
2016-04-15 04:54:11 +02:00
// return budget.GetRequiredPaymentsString(nBlockHeight);
// } else {
// return mnpayments.GetRequiredPaymentsString(nBlockHeight);
// }
2016-05-24 23:16:42 +02:00
return mnpayments . GetRequiredPaymentsString ( nBlockHeight ) ;
2015-05-26 16:56:51 +02:00
}
2016-01-24 05:21:14 +01:00
void CMasternodePayments : : FillBlockPayee ( CMutableTransaction & txNew , CAmount nFees )
2015-05-30 19:27:51 +02:00
{
2016-03-07 11:18:06 +01:00
AssertLockHeld ( cs_main ) ;
if ( ! chainActive . Tip ( ) ) return ;
2015-05-30 19:27:51 +02:00
bool hasPayment = true ;
CScript payee ;
2015-06-25 17:17:53 +02:00
2015-05-30 19:27:51 +02:00
//spork
2016-03-07 11:18:06 +01:00
if ( ! mnpayments . GetBlockPayee ( chainActive . Tip ( ) - > nHeight + 1 , payee ) ) {
2015-05-30 19:27:51 +02:00
//no masternode detected
2016-01-24 20:05:31 +01:00
CMasternode * winningNode = mnodeman . GetCurrentMasterNode ( ) ;
2015-05-30 19:27:51 +02:00
if ( winningNode ) {
payee = GetScriptForDestination ( winningNode - > pubkey . GetID ( ) ) ;
} else {
LogPrintf ( " CreateNewBlock: Failed to detect masternode to pay \n " ) ;
hasPayment = false ;
}
}
2016-03-07 11:18:06 +01:00
CAmount blockValue = nFees + GetBlockSubsidy ( chainActive . Tip ( ) - > nBits , chainActive . Tip ( ) - > nHeight , Params ( ) . GetConsensus ( ) ) ;
CAmount masternodePayment = GetMasternodePayment ( chainActive . Tip ( ) - > nHeight + 1 , blockValue ) ;
2015-06-25 17:17:53 +02:00
2015-05-30 19:27:51 +02:00
txNew . vout [ 0 ] . nValue = blockValue ;
if ( hasPayment ) {
txNew . vout . resize ( 2 ) ;
txNew . vout [ 1 ] . scriptPubKey = payee ;
txNew . vout [ 1 ] . nValue = masternodePayment ;
txNew . vout [ 0 ] . nValue - = masternodePayment ;
CTxDestination address1 ;
ExtractDestination ( payee , address1 ) ;
CBitcoinAddress address2 ( address1 ) ;
2016-05-27 00:04:15 +02:00
LogPrintf ( " Masternode payment %d to %s \n " , masternodePayment , address2 . ToString ( ) ) ;
2015-05-30 19:27:51 +02:00
}
}
2015-07-08 03:57:32 +02:00
int CMasternodePayments : : GetMinMasternodePaymentsProto ( ) {
2016-07-30 13:04:27 +02:00
return sporkManager . IsSporkActive ( SPORK_10_MASTERNODE_PAY_UPDATED_NODES )
2015-07-22 01:11:49 +02:00
? MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2
: MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 ;
2015-07-08 03:57:32 +02:00
}
2016-05-24 23:16:42 +02:00
void CMasternodePayments : : ProcessMessage ( CNode * pfrom , std : : string & strCommand , CDataStream & vRecv )
2015-04-16 21:58:09 +02:00
{
2015-08-07 06:48:55 +02:00
if ( ! masternodeSync . IsBlockchainSynced ( ) ) return ;
2015-04-16 21:58:09 +02:00
2015-08-25 00:01:02 +02:00
if ( fLiteMode ) return ; //disable all Darksend/Masternode related functionality
2016-02-17 23:18:57 +01:00
if ( strCommand = = NetMsgType : : MNWINNERSSYNC ) { //Masternode Payments Request Sync
2015-04-16 21:58:09 +02:00
if ( fLiteMode ) return ; //disable all Darksend/Masternode related functionality
2015-07-21 00:09:42 +02:00
int nCountNeeded ;
vRecv > > nCountNeeded ;
2016-02-02 16:28:56 +01:00
if ( Params ( ) . NetworkIDString ( ) = = CBaseChainParams : : MAIN ) {
2016-02-17 23:18:57 +01:00
if ( pfrom - > HasFulfilledRequest ( NetMsgType : : MNWINNERSSYNC ) ) {
2015-07-21 04:24:43 +02:00
LogPrintf ( " mnget - peer already asked me for the list \n " ) ;
Misbehaving ( pfrom - > GetId ( ) , 20 ) ;
return ;
}
2015-04-16 21:58:09 +02:00
}
2015-07-21 04:24:43 +02:00
2016-02-17 23:18:57 +01:00
pfrom - > FulfilledRequest ( NetMsgType : : MNWINNERSSYNC ) ;
2016-05-30 08:22:30 +02:00
Sync ( pfrom , nCountNeeded ) ;
2016-03-04 06:58:53 +01:00
LogPrintf ( " mnget - Sent Masternode winners to %s \n " , pfrom - > addr . ToString ( ) ) ;
2015-04-16 21:58:09 +02:00
}
2016-02-17 23:18:57 +01:00
else if ( strCommand = = NetMsgType : : MNWINNER ) { //Masternode Payments Declare Winner
2015-05-27 21:47:01 +02:00
//this is required in litemodef
2015-04-16 21:58:09 +02:00
CMasternodePaymentWinner winner ;
vRecv > > winner ;
2015-08-15 01:19:46 +02:00
if ( pfrom - > nVersion < MIN_MNW_PEER_PROTO_VERSION ) return ;
2016-03-02 22:20:04 +01:00
if ( ! pCurrentBlockIndex ) return ;
2015-04-16 21:58:09 +02:00
2016-05-30 08:22:30 +02:00
if ( mapMasternodePayeeVotes . count ( winner . GetHash ( ) ) ) {
2016-03-04 06:58:53 +01:00
LogPrint ( " mnpayments " , " mnw - Already seen - %s bestHeight %d \n " , winner . GetHash ( ) . ToString ( ) , pCurrentBlockIndex - > nHeight ) ;
2015-08-05 02:54:02 +02:00
masternodeSync . AddedMasternodeWinner ( winner . GetHash ( ) ) ;
2015-07-30 18:00:28 +02:00
return ;
2015-04-16 21:58:09 +02:00
}
2016-03-02 22:20:04 +01:00
int nFirstBlock = pCurrentBlockIndex - > nHeight - ( mnodeman . CountEnabled ( ) * 1.25 ) ;
if ( winner . nBlockHeight < nFirstBlock | | winner . nBlockHeight > pCurrentBlockIndex - > nHeight + 20 ) {
LogPrint ( " mnpayments " , " mnw - winner out of range - FirstBlock %d Height %d bestHeight %d \n " , nFirstBlock , winner . nBlockHeight , pCurrentBlockIndex - > nHeight ) ;
2015-04-16 21:58:09 +02:00
return ;
}
2015-07-18 21:24:06 +02:00
std : : string strError = " " ;
2015-08-30 01:48:19 +02:00
if ( ! winner . IsValid ( pfrom , strError ) ) {
2016-06-27 17:25:22 +02:00
if ( strError ! = " " ) LogPrint ( " mnpayments " , " mnw - invalid message - %s \n " , strError ) ;
2015-04-16 21:58:09 +02:00
return ;
}
2016-05-30 08:22:30 +02:00
if ( ! CanVote ( winner . vinMasternode . prevout , winner . nBlockHeight ) ) {
2015-07-24 16:12:48 +02:00
LogPrintf ( " mnw - masternode already voted - %s \n " , winner . vinMasternode . prevout . ToStringShort ( ) ) ;
return ;
}
2015-04-22 16:33:44 +02:00
if ( ! winner . SignatureValid ( ) ) {
2015-04-16 21:58:09 +02:00
LogPrintf ( " mnw - invalid signature \n " ) ;
2015-10-02 09:21:49 +02:00
if ( masternodeSync . IsSynced ( ) ) Misbehaving ( pfrom - > GetId ( ) , 20 ) ;
2015-08-07 05:07:40 +02:00
// it could just be a non-synced masternode
mnodeman . AskForMN ( pfrom , winner . vinMasternode ) ;
2015-04-16 21:58:09 +02:00
return ;
}
2015-04-22 16:33:44 +02:00
CTxDestination address1 ;
2015-06-25 20:08:50 +02:00
ExtractDestination ( winner . payee , address1 ) ;
2015-04-22 16:33:44 +02:00
CBitcoinAddress address2 ( address1 ) ;
2016-03-04 06:58:53 +01:00
LogPrint ( " mnpayments " , " mnw - winning vote - Addr %s Height %d bestHeight %d - %s \n " , address2 . ToString ( ) , winner . nBlockHeight , pCurrentBlockIndex - > nHeight , winner . vinMasternode . prevout . ToStringShort ( ) ) ;
2015-04-16 21:58:09 +02:00
2016-05-30 08:22:30 +02:00
if ( AddWinningMasternode ( winner ) ) {
2015-04-22 16:33:44 +02:00
winner . Relay ( ) ;
2015-08-05 02:54:02 +02:00
masternodeSync . AddedMasternodeWinner ( winner . GetHash ( ) ) ;
2015-04-16 21:58:09 +02:00
}
}
}
2015-04-22 16:33:44 +02:00
bool CMasternodePaymentWinner : : Sign ( CKey & keyMasternode , CPubKey & pubKeyMasternode )
2015-04-16 21:58:09 +02:00
{
2015-04-22 16:33:44 +02:00
std : : string errorMessage ;
std : : string strMasterNodeSignMessage ;
std : : string strMessage = vinMasternode . prevout . ToStringShort ( ) +
2015-06-25 17:17:53 +02:00
boost : : lexical_cast < std : : string > ( nBlockHeight ) +
2016-02-02 16:28:56 +01:00
ScriptToAsmStr ( payee ) ;
2015-06-25 17:17:53 +02:00
2015-04-22 16:33:44 +02:00
if ( ! darkSendSigner . SignMessage ( strMessage , errorMessage , vchSig , keyMasternode ) ) {
2016-03-04 06:58:53 +01:00
LogPrintf ( " CMasternodePing::Sign() - Error: %s \n " , errorMessage ) ;
2015-04-22 16:33:44 +02:00
return false ;
}
2015-04-16 21:58:09 +02:00
2015-04-22 16:33:44 +02:00
if ( ! darkSendSigner . VerifyMessage ( pubKeyMasternode , vchSig , strMessage , errorMessage ) ) {
2016-03-04 06:58:53 +01:00
LogPrintf ( " CMasternodePing::Sign() - Error: %s \n " , errorMessage ) ;
2015-04-16 21:58:09 +02:00
return false ;
}
return true ;
}
2015-04-22 16:33:44 +02:00
bool CMasternodePayments : : GetBlockPayee ( int nBlockHeight , CScript & payee )
2015-04-16 21:58:09 +02:00
{
2015-05-28 19:45:31 +02:00
if ( mapMasternodeBlocks . count ( nBlockHeight ) ) {
2015-04-22 16:33:44 +02:00
return mapMasternodeBlocks [ nBlockHeight ] . GetPayee ( payee ) ;
}
2015-04-16 21:58:09 +02:00
2015-04-22 16:33:44 +02:00
return false ;
}
2015-04-16 21:58:09 +02:00
2015-07-22 05:07:23 +02:00
// Is this masternode scheduled to get paid soon?
2015-07-23 15:45:43 +02:00
// -- Only look ahead up to 8 blocks to allow for propagation of the latest 2 winners
2015-06-15 02:05:51 +02:00
bool CMasternodePayments : : IsScheduled ( CMasternode & mn , int nNotBlockHeight )
2015-05-27 21:47:01 +02:00
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_mapMasternodeBlocks ) ;
2016-03-02 22:20:04 +01:00
if ( ! pCurrentBlockIndex ) return false ;
2015-05-27 21:47:01 +02:00
CScript mnpayee ;
mnpayee = GetScriptForDestination ( mn . pubkey . GetID ( ) ) ;
CScript payee ;
2016-03-02 22:20:04 +01:00
for ( int64_t h = pCurrentBlockIndex - > nHeight ; h < = pCurrentBlockIndex - > nHeight + 8 ; h + + ) {
2015-06-15 02:05:51 +02:00
if ( h = = nNotBlockHeight ) continue ;
2015-05-27 21:47:01 +02:00
if ( mapMasternodeBlocks . count ( h ) ) {
2015-05-28 19:45:31 +02:00
if ( mapMasternodeBlocks [ h ] . GetPayee ( payee ) ) {
2015-06-23 18:38:28 +02:00
if ( mnpayee = = payee ) {
2015-05-28 19:45:31 +02:00
return true ;
}
}
2015-05-27 21:47:01 +02:00
}
}
return false ;
}
2015-08-30 01:48:19 +02:00
bool CMasternodePayments : : AddWinningMasternode ( CMasternodePaymentWinner & winnerIn )
2015-04-22 16:33:44 +02:00
{
2016-02-02 16:28:56 +01:00
uint256 blockHash = uint256 ( ) ;
2015-05-26 16:56:51 +02:00
if ( ! GetBlockHash ( blockHash , winnerIn . nBlockHeight - 100 ) ) {
2015-04-16 21:58:09 +02:00
return false ;
}
2015-07-29 17:28:49 +02:00
{
LOCK2 ( cs_mapMasternodePayeeVotes , cs_mapMasternodeBlocks ) ;
if ( mapMasternodePayeeVotes . count ( winnerIn . GetHash ( ) ) ) {
return false ;
}
2015-04-16 21:58:09 +02:00
2015-07-29 17:28:49 +02:00
mapMasternodePayeeVotes [ winnerIn . GetHash ( ) ] = winnerIn ;
2015-04-22 16:33:44 +02:00
2015-07-29 17:28:49 +02:00
if ( ! mapMasternodeBlocks . count ( winnerIn . nBlockHeight ) ) {
CMasternodeBlockPayees blockPayees ( winnerIn . nBlockHeight ) ;
mapMasternodeBlocks [ winnerIn . nBlockHeight ] = blockPayees ;
}
2015-04-16 21:58:09 +02:00
}
2016-05-24 23:16:42 +02:00
mapMasternodeBlocks [ winnerIn . nBlockHeight ] . AddPayee ( winnerIn . payee , 1 ) ;
2015-04-22 16:33:44 +02:00
2015-04-16 21:58:09 +02:00
return true ;
}
2015-04-22 16:33:44 +02:00
bool CMasternodeBlockPayees : : IsTransactionValid ( const CTransaction & txNew )
2015-04-16 21:58:09 +02:00
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_vecPayments ) ;
2015-05-04 17:04:09 +02:00
int nMaxSignatures = 0 ;
std : : string strPayeesPossible = " " ;
2015-06-25 20:08:50 +02:00
CAmount masternodePayment = GetMasternodePayment ( nBlockHeight , txNew . GetValueOut ( ) ) ;
2016-03-04 06:58:53 +01:00
//require at least MNPAYMENTS_SIGNATURES_REQUIRED signatures
2015-05-04 17:04:09 +02:00
BOOST_FOREACH ( CMasternodePayee & payee , vecPayments )
2015-05-16 04:53:53 +02:00
if ( payee . nVotes > = nMaxSignatures & & payee . nVotes > = MNPAYMENTS_SIGNATURES_REQUIRED )
2015-05-04 17:04:09 +02:00
nMaxSignatures = payee . nVotes ;
2015-06-25 17:17:53 +02:00
2016-03-04 06:58:53 +01:00
// if we don't have at least MNPAYMENTS_SIGNATURES_REQUIRED signatures on a payee, approve whichever is the longest chain
2015-06-21 19:06:25 +02:00
if ( nMaxSignatures < MNPAYMENTS_SIGNATURES_REQUIRED ) return true ;
2015-05-04 17:04:09 +02:00
BOOST_FOREACH ( CMasternodePayee & payee , vecPayments )
2015-04-22 16:33:44 +02:00
{
bool found = false ;
2015-06-25 17:17:53 +02:00
BOOST_FOREACH ( CTxOut out , txNew . vout ) {
2015-06-25 20:08:50 +02:00
if ( payee . scriptPubKey = = out . scriptPubKey & & masternodePayment = = out . nValue ) {
2015-04-22 16:33:44 +02:00
found = true ;
2015-06-25 17:17:53 +02:00
}
}
2015-04-16 21:58:09 +02:00
2015-06-25 17:17:53 +02:00
if ( payee . nVotes > = MNPAYMENTS_SIGNATURES_REQUIRED ) {
2015-05-04 17:04:09 +02:00
if ( found ) return true ;
2015-04-16 21:58:09 +02:00
2015-04-22 16:33:44 +02:00
CTxDestination address1 ;
ExtractDestination ( payee . scriptPubKey , address1 ) ;
CBitcoinAddress address2 ( address1 ) ;
2015-04-16 21:58:09 +02:00
2015-05-04 17:04:09 +02:00
if ( strPayeesPossible = = " " ) {
2015-06-25 20:08:50 +02:00
strPayeesPossible + = address2 . ToString ( ) ;
2015-05-04 17:04:09 +02:00
} else {
2015-06-25 20:08:50 +02:00
strPayeesPossible + = " , " + address2 . ToString ( ) ;
2015-05-04 17:04:09 +02:00
}
2015-04-16 21:58:09 +02:00
}
}
2015-05-04 17:04:09 +02:00
2016-02-19 19:11:44 +01:00
LogPrintf ( " CMasternodePayments::IsTransactionValid - Missing required payment - %s %d \n " , strPayeesPossible , masternodePayment ) ;
2015-05-04 17:04:09 +02:00
return false ;
2015-04-16 21:58:09 +02:00
}
2015-04-22 16:33:44 +02:00
std : : string CMasternodeBlockPayees : : GetRequiredPaymentsString ( )
2015-04-16 21:58:09 +02:00
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_vecPayments ) ;
2015-04-22 16:33:44 +02:00
std : : string ret = " Unknown " ;
2015-05-04 17:04:09 +02:00
BOOST_FOREACH ( CMasternodePayee & payee , vecPayments )
2015-04-22 16:33:44 +02:00
{
2015-05-26 16:56:51 +02:00
CTxDestination address1 ;
ExtractDestination ( payee . scriptPubKey , address1 ) ;
CBitcoinAddress address2 ( address1 ) ;
2015-04-22 16:33:44 +02:00
2015-05-26 16:56:51 +02:00
if ( ret ! = " Unknown " ) {
2015-06-25 20:08:50 +02:00
ret + = " , " + address2 . ToString ( ) + " : " + boost : : lexical_cast < std : : string > ( payee . nVotes ) ;
2015-05-26 16:56:51 +02:00
} else {
2015-06-25 20:22:11 +02:00
ret = address2 . ToString ( ) + " : " + boost : : lexical_cast < std : : string > ( payee . nVotes ) ;
2015-04-16 21:58:09 +02:00
}
}
2015-05-04 17:04:09 +02:00
2015-04-22 16:33:44 +02:00
return ret ;
2015-04-16 21:58:09 +02:00
}
2015-04-22 16:33:44 +02:00
std : : string CMasternodePayments : : GetRequiredPaymentsString ( int nBlockHeight )
2015-04-16 21:58:09 +02:00
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_mapMasternodeBlocks ) ;
2015-04-22 16:33:44 +02:00
if ( mapMasternodeBlocks . count ( nBlockHeight ) ) {
return mapMasternodeBlocks [ nBlockHeight ] . GetRequiredPaymentsString ( ) ;
2015-04-16 21:58:09 +02:00
}
2015-04-22 16:33:44 +02:00
return " Unknown " ;
}
2015-04-16 21:58:09 +02:00
2015-04-22 16:33:44 +02:00
bool CMasternodePayments : : IsTransactionValid ( const CTransaction & txNew , int nBlockHeight )
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_mapMasternodeBlocks ) ;
2015-04-22 16:33:44 +02:00
if ( mapMasternodeBlocks . count ( nBlockHeight ) ) {
return mapMasternodeBlocks [ nBlockHeight ] . IsTransactionValid ( txNew ) ;
2015-04-16 21:58:09 +02:00
}
2015-04-22 16:33:44 +02:00
return true ;
2015-04-16 21:58:09 +02:00
}
2016-04-13 19:49:47 +02:00
void CMasternodePayments : : CheckAndRemove ( )
2015-04-16 21:58:09 +02:00
{
2016-03-02 22:20:04 +01:00
if ( ! pCurrentBlockIndex ) return ;
2015-04-16 21:58:09 +02:00
2016-03-02 22:20:04 +01:00
LOCK2 ( cs_mapMasternodePayeeVotes , cs_mapMasternodeBlocks ) ;
2015-04-16 21:58:09 +02:00
2016-05-29 20:35:09 +02:00
// keep a bit more for historical sake but at least minBlocksToStore
int nLimit = std : : max ( int ( mnodeman . size ( ) * nStorageCoeff ) , nMinBlocksToStore ) ;
2015-04-16 21:58:09 +02:00
2015-05-04 17:04:09 +02:00
std : : map < uint256 , CMasternodePaymentWinner > : : iterator it = mapMasternodePayeeVotes . begin ( ) ;
while ( it ! = mapMasternodePayeeVotes . end ( ) ) {
CMasternodePaymentWinner winner = ( * it ) . second ;
2015-06-25 17:17:53 +02:00
2016-03-02 22:20:04 +01:00
if ( pCurrentBlockIndex - > nHeight - winner . nBlockHeight > nLimit ) {
2015-07-31 17:46:47 +02:00
LogPrint ( " mnpayments " , " CMasternodePayments::CleanPaymentList - Removing old Masternode payment - block %d \n " , winner . nBlockHeight ) ;
2015-08-05 02:54:02 +02:00
masternodeSync . mapSeenSyncMNW . erase ( ( * it ) . first ) ;
2015-05-04 17:04:09 +02:00
mapMasternodePayeeVotes . erase ( it + + ) ;
2015-08-25 12:58:48 +02:00
mapMasternodeBlocks . erase ( winner . nBlockHeight ) ;
2015-05-04 17:04:09 +02:00
} else {
+ + it ;
2015-04-16 21:58:09 +02:00
}
2015-05-04 17:04:09 +02:00
}
2016-05-30 08:22:30 +02:00
LogPrintf ( " CMasternodePayments::CleanPaymentList() - %s mapSeenSyncMNW %lld \n " , ToString ( ) , masternodeSync . mapSeenSyncMNW . size ( ) ) ;
2015-04-16 21:58:09 +02:00
}
2015-08-30 01:48:19 +02:00
bool CMasternodePaymentWinner : : IsValid ( CNode * pnode , std : : string & strError )
2015-04-22 16:33:44 +02:00
{
2015-07-21 17:09:17 +02:00
CMasternode * pmn = mnodeman . Find ( vinMasternode ) ;
2015-04-16 21:58:09 +02:00
2015-07-21 17:09:17 +02:00
if ( ! pmn )
2015-04-16 21:58:09 +02:00
{
2015-07-21 17:09:17 +02:00
strError = strprintf ( " Unknown Masternode %s " , vinMasternode . prevout . ToStringShort ( ) ) ;
2016-06-27 17:25:22 +02:00
LogPrint ( " mnpayments " , " CMasternodePaymentWinner::IsValid - %s \n " , strError ) ;
2015-08-07 05:07:40 +02:00
mnodeman . AskForMN ( pnode , vinMasternode ) ;
2015-04-22 16:33:44 +02:00
return false ;
2015-04-16 21:58:09 +02:00
}
2015-07-22 01:11:49 +02:00
if ( pmn - > protocolVersion < MIN_MNW_PEER_PROTO_VERSION )
2015-07-21 17:09:17 +02:00
{
2015-07-22 01:11:49 +02:00
strError = strprintf ( " Masternode protocol too old %d - req %d " , pmn - > protocolVersion , MIN_MNW_PEER_PROTO_VERSION ) ;
2016-06-27 17:25:22 +02:00
LogPrint ( " mnpayments " , " CMasternodePaymentWinner::IsValid - %s \n " , strError ) ;
2015-07-21 17:09:17 +02:00
return false ;
}
2015-08-30 01:48:19 +02:00
int n = mnodeman . GetMasternodeRank ( vinMasternode , nBlockHeight - 100 , MIN_MNW_PEER_PROTO_VERSION ) ;
2015-07-21 17:09:17 +02:00
2015-08-30 01:48:19 +02:00
if ( n > MNPAYMENTS_SIGNATURES_TOTAL )
2015-08-28 17:53:08 +02:00
{
//It's common to have masternodes mistakenly think they are in the top 10
// We don't want to print all of these messages, or punish them unless they're way off
2015-08-30 01:48:19 +02:00
if ( n > MNPAYMENTS_SIGNATURES_TOTAL * 2 )
2015-08-28 17:53:08 +02:00
{
2015-08-30 01:48:19 +02:00
strError = strprintf ( " Masternode not in the top %d (%d) " , MNPAYMENTS_SIGNATURES_TOTAL , n ) ;
2016-06-27 17:25:22 +02:00
LogPrint ( " mnpayments " , " CMasternodePaymentWinner::IsValid - %s \n " , strError ) ;
2015-10-02 09:21:49 +02:00
if ( masternodeSync . IsSynced ( ) ) Misbehaving ( pnode - > GetId ( ) , 20 ) ;
2015-08-28 17:53:08 +02:00
}
2015-04-22 16:33:44 +02:00
return false ;
}
return true ;
}
bool CMasternodePayments : : ProcessBlock ( int nBlockHeight )
{
2016-05-25 19:06:48 +02:00
// DETERMINE IF WE SHOULD BE VOTING FOR THE NEXT PAYEE
2015-04-22 16:33:44 +02:00
if ( ! fMasterNode ) return false ;
2016-05-25 19:06:48 +02:00
int n = mnodeman . GetMasternodeRank ( activeMasternode . vin , nBlockHeight - 100 , MIN_MNW_PEER_PROTO_VERSION ) ;
if ( n = = - 1 )
{
LogPrint ( " mnpayments " , " CMasternodePayments::ProcessBlock - Unknown Masternode \n " ) ;
return false ;
}
if ( n > MNPAYMENTS_SIGNATURES_TOTAL )
{
LogPrint ( " mnpayments " , " CMasternodePayments::ProcessBlock - Masternode not in the top %d (%d) \n " , MNPAYMENTS_SIGNATURES_TOTAL , n ) ;
return false ;
}
2015-04-22 16:33:44 +02:00
2015-04-16 21:58:09 +02:00
2016-05-24 23:16:42 +02:00
// LOCATE THE NEXT MASTERNODE WHICH SHOULD BE PAID
2015-04-22 16:33:44 +02:00
2016-05-25 19:06:48 +02:00
CMasternodePaymentWinner newWinner ( activeMasternode . vin ) ;
2016-05-24 23:16:42 +02:00
{
LogPrintf ( " CMasternodePayments::ProcessBlock() Start nHeight %d - vin %s. \n " , nBlockHeight , activeMasternode . vin . ToString ( ) ) ;
2015-04-16 21:58:09 +02:00
2016-05-24 23:16:42 +02:00
// pay to the oldest MN that still had no payment but its input is old enough and it was active long enough
int nCount = 0 ;
CMasternode * pmn = mnodeman . GetNextMasternodeInQueueForPayment ( nBlockHeight , true , nCount ) ;
if ( pmn ! = NULL )
{
LogPrintf ( " CMasternodePayments::ProcessBlock() Found by FindOldestNotInVec \n " ) ;
2015-04-16 21:58:09 +02:00
2016-05-24 23:16:42 +02:00
newWinner . nBlockHeight = nBlockHeight ;
2015-06-25 17:17:53 +02:00
2016-05-24 23:16:42 +02:00
CScript payee = GetScriptForDestination ( pmn - > pubkey . GetID ( ) ) ;
newWinner . AddPayee ( payee ) ;
2015-04-22 16:33:44 +02:00
2016-05-24 23:16:42 +02:00
CTxDestination address1 ;
ExtractDestination ( payee , address1 ) ;
CBitcoinAddress address2 ( address1 ) ;
2015-04-16 21:58:09 +02:00
2016-05-24 23:16:42 +02:00
LogPrintf ( " CMasternodePayments::ProcessBlock() Winner payee %s nHeight %d. \n " , address2 . ToString ( ) , newWinner . nBlockHeight ) ;
} else {
LogPrintf ( " CMasternodePayments::ProcessBlock() Failed to find masternode to pay \n " ) ;
}
}
2015-04-16 21:58:09 +02:00
2016-05-25 19:06:48 +02:00
// SIGN MESSAGE TO NETWORK WITH OUR MASTERNODE KEYS
2015-04-22 16:33:44 +02:00
std : : string errorMessage ;
2015-04-16 21:58:09 +02:00
2015-06-22 15:50:33 +02:00
LogPrintf ( " CMasternodePayments::ProcessBlock() - Signing Winner \n " ) ;
2016-07-15 08:36:00 +02:00
if ( newWinner . Sign ( activeMasternode . keyMasternode , activeMasternode . pubKeyMasternode ) )
2015-04-16 21:58:09 +02:00
{
2015-06-22 15:50:33 +02:00
LogPrintf ( " CMasternodePayments::ProcessBlock() - AddWinningMasternode \n " ) ;
2015-08-30 01:48:19 +02:00
if ( AddWinningMasternode ( newWinner ) )
2015-04-16 21:58:09 +02:00
{
2015-04-22 16:33:44 +02:00
newWinner . Relay ( ) ;
2015-04-16 21:58:09 +02:00
return true ;
}
}
2015-05-04 17:04:09 +02:00
2015-04-16 21:58:09 +02:00
return false ;
}
2015-04-22 16:33:44 +02:00
void CMasternodePaymentWinner : : Relay ( )
2015-04-16 21:58:09 +02:00
{
2015-04-22 16:33:44 +02:00
CInv inv ( MSG_MASTERNODE_WINNER , GetHash ( ) ) ;
2015-07-08 02:37:23 +02:00
RelayInv ( inv ) ;
2015-04-16 21:58:09 +02:00
}
2015-04-22 16:33:44 +02:00
bool CMasternodePaymentWinner : : SignatureValid ( )
2015-04-16 21:58:09 +02:00
{
2015-04-22 16:33:44 +02:00
CMasternode * pmn = mnodeman . Find ( vinMasternode ) ;
2015-04-16 21:58:09 +02:00
2015-04-22 16:33:44 +02:00
if ( pmn ! = NULL )
{
std : : string strMessage = vinMasternode . prevout . ToStringShort ( ) +
2015-06-25 17:17:53 +02:00
boost : : lexical_cast < std : : string > ( nBlockHeight ) +
2016-02-02 16:28:56 +01:00
ScriptToAsmStr ( payee ) ;
2015-04-16 21:58:09 +02:00
2015-04-22 16:33:44 +02:00
std : : string errorMessage = " " ;
if ( ! darkSendSigner . VerifyMessage ( pmn - > pubkey2 , vchSig , strMessage , errorMessage ) ) {
2016-03-15 00:16:29 +01:00
return error ( " CMasternodePaymentWinner::SignatureValid() - Got bad Masternode payment signature % s " , vinMasternode.ToString().c_str()) ;
2015-04-22 16:33:44 +02:00
}
2015-04-16 21:58:09 +02:00
return true ;
}
2015-04-22 16:33:44 +02:00
return false ;
2015-04-16 21:58:09 +02:00
}
2015-04-22 16:33:44 +02:00
2015-07-21 00:09:42 +02:00
void CMasternodePayments : : Sync ( CNode * node , int nCountNeeded )
2015-04-22 16:33:44 +02:00
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_mapMasternodePayeeVotes ) ;
2015-05-04 17:04:09 +02:00
2016-03-02 22:20:04 +01:00
if ( ! pCurrentBlockIndex ) return ;
2015-05-04 17:04:09 +02:00
2015-09-04 14:22:17 +02:00
int nCount = ( mnodeman . CountEnabled ( ) * 1.25 ) ;
2015-07-21 00:09:42 +02:00
if ( nCountNeeded > nCount ) nCountNeeded = nCount ;
2015-08-28 23:37:53 +02:00
2015-08-31 06:05:10 +02:00
int nInvCount = 0 ;
2015-05-04 17:04:09 +02:00
std : : map < uint256 , CMasternodePaymentWinner > : : iterator it = mapMasternodePayeeVotes . begin ( ) ;
while ( it ! = mapMasternodePayeeVotes . end ( ) ) {
2015-08-30 01:48:19 +02:00
CMasternodePaymentWinner winner = ( * it ) . second ;
2016-03-02 22:20:04 +01:00
if ( winner . nBlockHeight > = pCurrentBlockIndex - > nHeight - nCountNeeded & & winner . nBlockHeight < = pCurrentBlockIndex - > nHeight + 20 ) {
2015-08-31 06:05:10 +02:00
node - > PushInventory ( CInv ( MSG_MASTERNODE_WINNER , winner . GetHash ( ) ) ) ;
nInvCount + + ;
2015-07-23 23:35:14 +02:00
}
2015-05-04 17:04:09 +02:00
+ + it ;
}
2016-02-17 23:18:57 +01:00
node - > PushMessage ( NetMsgType : : SYNCSTATUSCOUNT , MASTERNODE_SYNC_MNW , nInvCount ) ;
2015-05-16 04:53:53 +02:00
}
2015-07-21 04:24:43 +02:00
std : : string CMasternodePayments : : ToString ( ) const
{
std : : ostringstream info ;
info < < " Votes: " < < ( int ) mapMasternodePayeeVotes . size ( ) < <
" , Blocks: " < < ( int ) mapMasternodeBlocks . size ( ) ;
return info . str ( ) ;
}
2015-07-22 00:14:54 +02:00
int CMasternodePayments : : GetOldestBlock ( )
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_mapMasternodeBlocks ) ;
2015-07-22 00:14:54 +02:00
int nOldestBlock = std : : numeric_limits < int > : : max ( ) ;
std : : map < int , CMasternodeBlockPayees > : : iterator it = mapMasternodeBlocks . begin ( ) ;
while ( it ! = mapMasternodeBlocks . end ( ) ) {
if ( ( * it ) . first < nOldestBlock ) {
nOldestBlock = ( * it ) . first ;
}
it + + ;
}
return nOldestBlock ;
}
2015-07-21 04:24:43 +02:00
int CMasternodePayments : : GetNewestBlock ( )
{
2015-07-29 17:28:49 +02:00
LOCK ( cs_mapMasternodeBlocks ) ;
2015-07-21 04:24:43 +02:00
int nNewestBlock = 0 ;
std : : map < int , CMasternodeBlockPayees > : : iterator it = mapMasternodeBlocks . begin ( ) ;
while ( it ! = mapMasternodeBlocks . end ( ) ) {
if ( ( * it ) . first > nNewestBlock ) {
nNewestBlock = ( * it ) . first ;
}
it + + ;
}
return nNewestBlock ;
}
2016-03-02 22:20:04 +01:00
2016-05-29 20:35:09 +02:00
bool CMasternodePayments : : IsEnoughData ( int nMnCount ) {
2016-05-30 14:11:09 +02:00
if ( GetBlockCount ( ) > nMnCount * nStorageCoeff & & GetBlockCount ( ) > nMinBlocksToStore )
2016-05-29 20:35:09 +02:00
{
float nAverageVotes = ( MNPAYMENTS_SIGNATURES_TOTAL + MNPAYMENTS_SIGNATURES_REQUIRED ) / 2 ;
2016-05-30 14:11:09 +02:00
if ( GetVoteCount ( ) > nMnCount * nStorageCoeff * nAverageVotes & & GetVoteCount ( ) > nMinBlocksToStore * nAverageVotes )
2016-05-29 20:35:09 +02:00
{
return true ;
}
}
return false ;
}
2016-03-02 22:20:04 +01:00
void CMasternodePayments : : UpdatedBlockTip ( const CBlockIndex * pindex )
{
pCurrentBlockIndex = pindex ;
LogPrint ( " mnpayments " , " pCurrentBlockIndex->nHeight: %d \n " , pCurrentBlockIndex - > nHeight ) ;
if ( ! fLiteMode & & masternodeSync . RequestedMasternodeAssets > MASTERNODE_SYNC_LIST )
ProcessBlock ( pindex - > nHeight + 10 ) ;
}