neobytes/src/governance-vote.cpp

113 lines
3.6 KiB
C++
Raw Normal View History

2016-04-08 19:47:00 +02:00
// Copyright (c) 2014-2016 The Dash Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2016-04-14 00:41:40 +02:00
#include "core_io.h"
#include "main.h"
#include "init.h"
#include "flat-database.h"
#include "governance.h"
#include "masternode.h"
2016-04-15 04:54:11 +02:00
#include "governance.h"
2016-04-14 00:41:40 +02:00
#include "darksend.h"
#include "masternodeman.h"
#include "masternode-sync.h"
#include "util.h"
#include "addrman.h"
#include <boost/lexical_cast.hpp>
CBudgetVote::CBudgetVote()
2016-04-08 19:47:00 +02:00
{
2016-04-26 19:45:06 +02:00
vinMasternode = CTxIn();
nParentHash = uint256();
2016-04-26 06:08:36 +02:00
nVoteAction = VOTE_ACTION_NONE;
nVoteOutcome = VOTE_OUTCOME_NONE;
2016-04-08 19:47:00 +02:00
nTime = 0;
fValid = true;
fSynced = false;
2016-04-26 19:45:06 +02:00
vchSig.clear();
2016-04-08 19:47:00 +02:00
}
2016-04-26 19:45:06 +02:00
CBudgetVote::CBudgetVote(CTxIn vinMasternodeIn, uint256 nParentHashIn, int nVoteActionIn, int nVoteOutcomeIn)
2016-04-08 19:47:00 +02:00
{
2016-04-26 19:45:06 +02:00
vinMasternode = vinMasternodeIn;
nParentHash = nParentHashIn;
2016-04-26 06:08:36 +02:00
nVoteAction = nVoteActionIn;
nVoteOutcome = nVoteOutcomeIn;
2016-04-08 19:47:00 +02:00
nTime = GetAdjustedTime();
fValid = true;
fSynced = false;
}
2016-04-14 00:41:40 +02:00
void CBudgetVote::Relay()
2016-04-08 19:47:00 +02:00
{
2016-04-14 00:41:40 +02:00
CInv inv(MSG_BUDGET_VOTE, GetHash());
2016-04-08 19:47:00 +02:00
RelayInv(inv, MIN_BUDGET_PEER_PROTO_VERSION);
}
2016-04-14 00:41:40 +02:00
bool CBudgetVote::Sign(CKey& keyMasternode, CPubKey& pubKeyMasternode)
2016-04-08 19:47:00 +02:00
{
// Choose coins to use
CPubKey pubKeyCollateralAddress;
CKey keyCollateralAddress;
std::string errorMessage;
2016-04-26 19:45:06 +02:00
std::string strMessage = vinMasternode.prevout.ToStringShort() + "|" + nParentHash.ToString() + "|" +
boost::lexical_cast<std::string>(nVoteAction) + "|" + boost::lexical_cast<std::string>(nVoteOutcome) + "|" + boost::lexical_cast<std::string>(nTime);
2016-04-08 19:47:00 +02:00
2016-04-26 19:45:06 +02:00
if(!darkSendSigner.SignMessage(strMessage, errorMessage, vchSig, keyMasternode)) {
LogPrintf("CBudgetVote::Sign - Error upon calling SignMessage");
return false;
}
2016-04-08 19:47:00 +02:00
2016-04-26 19:45:06 +02:00
if(!darkSendSigner.VerifyMessage(pubKeyMasternode, vchSig, strMessage, errorMessage)) {
LogPrintf("CBudgetVote::Sign - Error upon calling VerifyMessage");
return false;
}
2016-04-08 19:47:00 +02:00
return true;
}
2016-04-14 00:41:40 +02:00
bool CBudgetVote::IsValid(bool fSignatureCheck)
2016-04-08 19:47:00 +02:00
{
if(nTime > GetTime() + (60*60)){
LogPrint("mngovernance", "CBudgetVote::IsValid() - vote is too far ahead of current time - %s - nTime %lli - Max Time %lli\n", GetHash().ToString(), nTime, GetTime() + (60*60));
2016-04-08 19:47:00 +02:00
return false;
}
2016-04-26 06:08:36 +02:00
// support up to 50 actions (implemented in sentinel)
if(nVoteAction > 50)
{
LogPrint("mngovernance", "CBudgetVote::IsValid() - Client attempted to vote on invalid action(%d) - %s\n", nVoteAction, GetHash().ToString());
return false;
}
2016-04-14 00:41:40 +02:00
2016-04-26 06:08:36 +02:00
// 0=none, 1=yes, 2=no, 3=abstain. Beyond that reject votes
if(nVoteOutcome > 3)
{
LogPrint("mngovernance", "CBudgetVote::IsValid() - Client attempted to vote on invalid outcome(%d) - %s\n", nVoteAction, GetHash().ToString());
return false;
}
2016-04-26 19:45:06 +02:00
CMasternode* pmn = mnodeman.Find(vinMasternode);
if(pmn == NULL)
{
LogPrint("mngovernance", "CBudgetVote::IsValid() - Unknown Masternode - %s\n", vinMasternode.ToString());
return false;
}
2016-04-08 19:47:00 +02:00
if(!fSignatureCheck) return true;
std::string errorMessage;
2016-04-26 19:45:06 +02:00
std::string strMessage = vinMasternode.prevout.ToStringShort() + "|" + nParentHash.ToString() + "|" +
boost::lexical_cast<std::string>(nVoteAction) + "|" + boost::lexical_cast<std::string>(nVoteOutcome) + "|" + boost::lexical_cast<std::string>(nTime);
2016-04-08 19:47:00 +02:00
2016-04-26 19:45:06 +02:00
if(!darkSendSigner.VerifyMessage(pmn->pubkey2, vchSig, strMessage, errorMessage)) {
LogPrintf("CBudgetVote::IsValid() - Verify message failed - Error: %s\n", errorMessage);
return false;
}
2016-04-08 19:47:00 +02:00
return true;
2016-04-14 00:41:40 +02:00
}