2015-02-04 14:24:56 +01:00
|
|
|
// Copyright (c) 2014-2015 The Darkcoin developers
|
2014-12-09 02:17:57 +01:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2015-02-04 14:24:56 +01:00
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
#ifndef DARKSEND_H
|
|
|
|
#define DARKSEND_H
|
|
|
|
|
|
|
|
#include "core.h"
|
|
|
|
#include "main.h"
|
|
|
|
#include "activemasternode.h"
|
2015-02-23 21:01:21 +01:00
|
|
|
#include "masternodeman.h"
|
2015-03-02 00:09:33 +01:00
|
|
|
#include "darksend-relay.h"
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
class CTxIn;
|
2015-03-02 00:09:33 +01:00
|
|
|
class CDarksendPool;
|
2014-12-09 02:17:57 +01:00
|
|
|
class CDarkSendSigner;
|
|
|
|
class CMasterNodeVote;
|
|
|
|
class CBitcoinAddress;
|
|
|
|
class CDarksendQueue;
|
|
|
|
class CDarksendBroadcastTx;
|
|
|
|
class CActiveMasternode;
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
// pool states for mixing
|
2014-12-09 02:17:57 +01:00
|
|
|
#define POOL_MAX_TRANSACTIONS 3 // wait for X transactions to merge and publish
|
2015-03-02 00:09:33 +01:00
|
|
|
#define POOL_MAX_TRANSACTIONS_TESTNET 2 // wait for X transactions to merge and publish
|
2014-12-09 02:17:57 +01:00
|
|
|
#define POOL_STATUS_UNKNOWN 0 // waiting for update
|
|
|
|
#define POOL_STATUS_IDLE 1 // waiting for update
|
|
|
|
#define POOL_STATUS_QUEUE 2 // waiting in a queue
|
|
|
|
#define POOL_STATUS_ACCEPTING_ENTRIES 3 // accepting entries
|
|
|
|
#define POOL_STATUS_FINALIZE_TRANSACTION 4 // master node will broadcast what it accepted
|
|
|
|
#define POOL_STATUS_SIGNING 5 // check inputs/outputs, sign final tx
|
|
|
|
#define POOL_STATUS_TRANSMISSION 6 // transmit transaction
|
|
|
|
#define POOL_STATUS_ERROR 7 // error
|
|
|
|
#define POOL_STATUS_SUCCESS 8 // success
|
|
|
|
|
|
|
|
// status update message constants
|
|
|
|
#define MASTERNODE_ACCEPTED 1
|
|
|
|
#define MASTERNODE_REJECTED 0
|
|
|
|
#define MASTERNODE_RESET -1
|
|
|
|
|
|
|
|
#define DARKSEND_QUEUE_TIMEOUT 120
|
|
|
|
#define DARKSEND_SIGNING_TIMEOUT 30
|
2015-03-02 00:09:33 +01:00
|
|
|
#define DARKSEND_DOWNGRADE_TIMEOUT 30
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
// used for anonymous relaying of inputs/outputs/sigs
|
|
|
|
#define DARKSEND_RELAY_IN 1
|
|
|
|
#define DARKSEND_RELAY_OUT 2
|
|
|
|
#define DARKSEND_RELAY_SIG 3
|
2015-02-26 18:09:39 +01:00
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
extern CDarksendPool darkSendPool;
|
2014-12-09 02:17:57 +01:00
|
|
|
extern CDarkSendSigner darkSendSigner;
|
|
|
|
extern std::vector<CDarksendQueue> vecDarksendQueue;
|
|
|
|
extern std::string strMasterNodePrivKey;
|
|
|
|
extern map<uint256, CDarksendBroadcastTx> mapDarksendBroadcastTxes;
|
|
|
|
extern CActiveMasternode activeMasternode;
|
|
|
|
|
|
|
|
// get the darksend chain depth for a given input
|
|
|
|
int GetInputDarksendRounds(CTxIn in, int rounds=0);
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
//
|
|
|
|
// Holds an Darksend input
|
|
|
|
//
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
class CTxDSIn : public CTxIn
|
2014-12-09 02:17:57 +01:00
|
|
|
{
|
|
|
|
public:
|
2015-03-02 00:09:33 +01:00
|
|
|
bool fHasSig;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
CTxDSIn(const CTxIn& in)
|
2014-12-09 02:17:57 +01:00
|
|
|
{
|
2015-03-02 00:09:33 +01:00
|
|
|
prevout = in.prevout;
|
|
|
|
scriptSig = in.scriptSig;
|
|
|
|
prevPubKey = in.prevPubKey;
|
|
|
|
nSequence = in.nSequence;
|
2014-12-09 02:17:57 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
// A clients transaction in the darksend pool
|
2015-03-02 00:09:33 +01:00
|
|
|
// -- holds the input/output mapping for each user in the pool
|
2014-12-09 02:17:57 +01:00
|
|
|
class CDarkSendEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool isSet;
|
2015-03-02 00:09:33 +01:00
|
|
|
std::vector<CTxIn> sev;
|
2014-12-09 02:17:57 +01:00
|
|
|
int64_t amount;
|
|
|
|
CTransaction collateral;
|
|
|
|
std::vector<CTxOut> vout;
|
|
|
|
CTransaction txSupporting;
|
|
|
|
int64_t addedTime;
|
|
|
|
|
|
|
|
CDarkSendEntry()
|
|
|
|
{
|
|
|
|
isSet = false;
|
|
|
|
collateral = CTransaction();
|
|
|
|
amount = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Add(const std::vector<CTxIn> vinIn, int64_t amountIn, const CTransaction collateralIn, const std::vector<CTxOut> voutIn)
|
|
|
|
{
|
|
|
|
if(isSet){return false;}
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
sev = vinIn;
|
2014-12-09 02:17:57 +01:00
|
|
|
vout = voutIn;
|
|
|
|
amount = amountIn;
|
|
|
|
collateral = collateralIn;
|
|
|
|
isSet = true;
|
|
|
|
addedTime = GetTime();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsExpired()
|
|
|
|
{
|
|
|
|
return (GetTime() - addedTime) > DARKSEND_QUEUE_TIMEOUT;// 120 seconds
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
//
|
|
|
|
// A currently inprogress darksend merge and denomination information
|
|
|
|
//
|
|
|
|
class CDarksendQueue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CTxIn vin;
|
|
|
|
int64_t time;
|
|
|
|
int nDenom;
|
|
|
|
bool ready; //ready for submit
|
|
|
|
std::vector<unsigned char> vchSig;
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
//information used for the anonymous relay system
|
|
|
|
int nBlockHeight;
|
|
|
|
std::vector<unsigned char> vchRelaySig;
|
|
|
|
std::string strSharedKey;
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
CDarksendQueue()
|
|
|
|
{
|
|
|
|
nDenom = 0;
|
|
|
|
vin = CTxIn();
|
|
|
|
time = 0;
|
|
|
|
vchSig.clear();
|
2015-03-02 00:09:33 +01:00
|
|
|
vchRelaySig.clear();
|
|
|
|
nBlockHeight = 0;
|
|
|
|
strSharedKey = "";
|
2014-12-09 02:17:57 +01:00
|
|
|
ready = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPLEMENT_SERIALIZE
|
|
|
|
(
|
|
|
|
READWRITE(nDenom);
|
|
|
|
READWRITE(vin);
|
|
|
|
READWRITE(time);
|
|
|
|
READWRITE(ready);
|
|
|
|
READWRITE(vchSig);
|
2015-03-02 00:09:33 +01:00
|
|
|
|
|
|
|
if(ready){
|
|
|
|
READWRITE(vchRelaySig);
|
|
|
|
READWRITE(nBlockHeight);
|
|
|
|
READWRITE(strSharedKey);
|
|
|
|
}
|
2014-12-09 02:17:57 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
bool GetAddress(CService &addr)
|
|
|
|
{
|
2015-02-25 12:54:03 +01:00
|
|
|
CMasternode* pmn = mnodeman.Find(vin);
|
|
|
|
if(pmn != NULL)
|
2015-02-23 21:01:21 +01:00
|
|
|
{
|
2015-02-25 12:54:03 +01:00
|
|
|
addr = pmn->addr;
|
2015-02-23 21:01:21 +01:00
|
|
|
return true;
|
2014-12-09 02:17:57 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetProtocolVersion(int &protocolVersion)
|
|
|
|
{
|
2015-02-25 12:54:03 +01:00
|
|
|
CMasternode* pmn = mnodeman.Find(vin);
|
|
|
|
if(pmn != NULL)
|
2015-02-23 21:01:21 +01:00
|
|
|
{
|
2015-02-25 12:54:03 +01:00
|
|
|
protocolVersion = pmn->protocolVersion;
|
2015-02-23 21:01:21 +01:00
|
|
|
return true;
|
2014-12-09 02:17:57 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-05 16:08:03 +01:00
|
|
|
void SetSharedKey(std::string strSharedKey);
|
2014-12-09 02:17:57 +01:00
|
|
|
bool Sign();
|
|
|
|
bool Relay();
|
|
|
|
|
|
|
|
bool IsExpired()
|
|
|
|
{
|
|
|
|
return (GetTime() - time) > DARKSEND_QUEUE_TIMEOUT;// 120 seconds
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CheckSignature();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// store darksend tx signature information
|
|
|
|
class CDarksendBroadcastTx
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CTransaction tx;
|
|
|
|
CTxIn vin;
|
|
|
|
vector<unsigned char> vchSig;
|
|
|
|
int64_t sigTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// Helper object for signing and checking signatures
|
|
|
|
//
|
|
|
|
class CDarkSendSigner
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool IsVinAssociatedWithPubkey(CTxIn& vin, CPubKey& pubkey);
|
|
|
|
bool SetKey(std::string strSecret, std::string& errorMessage, CKey& key, CPubKey& pubkey);
|
|
|
|
bool SignMessage(std::string strMessage, std::string& errorMessage, std::vector<unsigned char>& vchSig, CKey key);
|
|
|
|
bool VerifyMessage(CPubKey pubkey, std::vector<unsigned char>& vchSig, std::string strMessage, std::string& errorMessage);
|
|
|
|
};
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
//
|
|
|
|
// Build a transaction anonymously
|
|
|
|
//
|
|
|
|
class CDSAnonTx
|
2014-12-09 02:17:57 +01:00
|
|
|
{
|
2015-03-02 00:09:33 +01:00
|
|
|
public:
|
|
|
|
std::vector<CTxDSIn> vin;
|
|
|
|
std::vector<CTxOut> vout;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
bool IsTransactionValid();
|
|
|
|
bool AddOutput(const CTxOut out);
|
|
|
|
bool AddInput(const CTxIn in);
|
|
|
|
bool AddSig(const CTxIn in);
|
|
|
|
int CountEntries() {return (int)vin.size() + (int)vout.size();}
|
2014-12-09 02:17:57 +01:00
|
|
|
};
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
void ConnectToDarkSendMasterNodeWinner();
|
|
|
|
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
//
|
|
|
|
// Used to keep track of current status of darksend pool
|
|
|
|
//
|
2015-03-02 00:09:33 +01:00
|
|
|
class CDarksendPool
|
2014-12-09 02:17:57 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
// clients entries
|
|
|
|
std::vector<CDarkSendEntry> myEntries;
|
|
|
|
// masternode entries
|
|
|
|
std::vector<CDarkSendEntry> entries;
|
|
|
|
// the finalized transaction ready for signing
|
|
|
|
CTransaction finalTransaction;
|
2015-03-02 00:09:33 +01:00
|
|
|
// anonymous inputs/outputs
|
|
|
|
CDSAnonTx anonTx;
|
|
|
|
bool fSubmitAnonymousFailed;
|
|
|
|
int nCountAttempts;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
int64_t lastTimeChanged;
|
|
|
|
int64_t lastAutoDenomination;
|
|
|
|
|
|
|
|
unsigned int state;
|
|
|
|
unsigned int entriesCount;
|
|
|
|
unsigned int lastEntryAccepted;
|
|
|
|
unsigned int countEntriesAccepted;
|
|
|
|
|
|
|
|
// where collateral should be made out to
|
|
|
|
CScript collateralPubKey;
|
|
|
|
|
|
|
|
std::vector<CTxIn> lockedCoins;
|
|
|
|
|
|
|
|
uint256 masterNodeBlockHash;
|
|
|
|
|
|
|
|
std::string lastMessage;
|
|
|
|
bool completedTransaction;
|
|
|
|
bool unitTest;
|
2015-03-02 00:09:33 +01:00
|
|
|
CMasternode* pSubmittedToMasternode;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
int sessionID;
|
|
|
|
int sessionDenom; //Users must submit an denom matching this
|
|
|
|
int sessionUsers; //N Users have said they'll join
|
|
|
|
bool sessionFoundMasternode; //If we've found a compatible masternode
|
|
|
|
int64_t sessionTotalValue; //used for autoDenom
|
|
|
|
std::vector<CTransaction> vecSessionCollateral;
|
|
|
|
|
|
|
|
int cachedLastSuccess;
|
|
|
|
int cachedNumBlocks; //used for the overview screen
|
|
|
|
int minBlockSpacing; //required blocks between mixes
|
|
|
|
CTransaction txCollateral;
|
|
|
|
|
2015-01-27 15:46:06 +01:00
|
|
|
int64_t lastNewBlock;
|
|
|
|
|
2014-12-28 00:45:07 +01:00
|
|
|
//debugging data
|
2014-12-28 02:08:45 +01:00
|
|
|
std::string strAutoDenomResult;
|
2014-12-28 00:45:07 +01:00
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
// used for securing the anonymous relay system
|
|
|
|
vector<unsigned char> vchMasternodeRelaySig;
|
|
|
|
int nMasternodeBlockHeight;
|
|
|
|
std::string strMasternodeSharedKey;
|
|
|
|
bool fResentInputsOutputs;
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
//incremented whenever a DSQ comes through
|
|
|
|
int64_t nDsqCount;
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
CDarksendPool()
|
2014-12-09 02:17:57 +01:00
|
|
|
{
|
|
|
|
/* DarkSend uses collateral addresses to trust parties entering the pool
|
|
|
|
to behave themselves. If they don't it takes their money. */
|
|
|
|
|
|
|
|
cachedLastSuccess = 0;
|
|
|
|
cachedNumBlocks = 0;
|
|
|
|
unitTest = false;
|
|
|
|
txCollateral = CTransaction();
|
|
|
|
minBlockSpacing = 1;
|
|
|
|
nDsqCount = 0;
|
2015-01-27 15:46:06 +01:00
|
|
|
lastNewBlock = 0;
|
2015-03-02 00:09:33 +01:00
|
|
|
strMasternodeSharedKey = "";
|
|
|
|
fResentInputsOutputs = false;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
SetNull();
|
|
|
|
}
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
//specific messages for the Darksend protocol
|
|
|
|
void ProcessMessageDarksend(CNode* pfrom, std::string& strCommand, CDataStream& vRecv);
|
2015-02-23 21:07:37 +01:00
|
|
|
|
2015-01-02 15:49:44 +01:00
|
|
|
void InitCollateralAddress(){
|
|
|
|
std::string strAddress = "";
|
|
|
|
if(Params().NetworkID() == CChainParams::MAIN) {
|
|
|
|
strAddress = "Xq19GqFvajRrEdDHYRKGYjTsQfpV5jyipF";
|
|
|
|
} else {
|
|
|
|
strAddress = "y1EZuxhhNMAUofTBEeLqGE1bJrpC2TWRNp";
|
|
|
|
}
|
|
|
|
SetCollateralAddress(strAddress);
|
|
|
|
}
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
void SetMinBlockSpacing(int minBlockSpacingIn){
|
|
|
|
minBlockSpacing = minBlockSpacingIn;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetCollateralAddress(std::string strAddress);
|
2014-12-28 15:46:39 +01:00
|
|
|
void Reset();
|
2015-03-02 00:09:33 +01:00
|
|
|
bool Downgrade();
|
|
|
|
bool ResendMissingInputsOutputs();
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
void SetNull(bool clearEverything=false);
|
|
|
|
|
|
|
|
void UnlockCoins();
|
|
|
|
|
|
|
|
bool IsNull() const
|
|
|
|
{
|
|
|
|
return (state == POOL_STATUS_ACCEPTING_ENTRIES && entries.empty() && myEntries.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetState() const
|
|
|
|
{
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetEntriesCount() const
|
|
|
|
{
|
|
|
|
if(fMasterNode){
|
|
|
|
return entries.size();
|
|
|
|
} else {
|
|
|
|
return entriesCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetLastEntryAccepted() const
|
|
|
|
{
|
|
|
|
return lastEntryAccepted;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetCountEntriesAccepted() const
|
|
|
|
{
|
|
|
|
return countEntriesAccepted;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetMyTransactionCount() const
|
|
|
|
{
|
|
|
|
return myEntries.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateState(unsigned int newState)
|
|
|
|
{
|
|
|
|
if (fMasterNode && (newState == POOL_STATUS_ERROR || newState == POOL_STATUS_SUCCESS)){
|
2015-03-02 00:09:33 +01:00
|
|
|
LogPrintf("CDarksendPool::UpdateState() - Can't set state to ERROR or SUCCESS as a masternode. \n");
|
2014-12-09 02:17:57 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
LogPrintf("CDarksendPool::UpdateState() == %d | %d \n", state, newState);
|
2014-12-09 02:17:57 +01:00
|
|
|
if(state != newState){
|
|
|
|
lastTimeChanged = GetTimeMillis();
|
|
|
|
if(fMasterNode) {
|
2015-03-02 00:09:33 +01:00
|
|
|
RelayStatus(darkSendPool.sessionID, darkSendPool.GetState(), darkSendPool.GetEntriesCount(), MASTERNODE_RESET);
|
2014-12-09 02:17:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
state = newState;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetMaxPoolTransactions()
|
|
|
|
{
|
|
|
|
//if we're on testnet, just use two transactions per merge
|
2015-03-02 00:09:33 +01:00
|
|
|
if(Params().NetworkID() == CChainParams::TESTNET || Params().NetworkID() == CChainParams::REGTEST) return POOL_MAX_TRANSACTIONS_TESTNET;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
//use the production amount
|
|
|
|
return POOL_MAX_TRANSACTIONS;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Do we have enough users to take entries?
|
|
|
|
bool IsSessionReady(){
|
|
|
|
return sessionUsers >= GetMaxPoolTransactions();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Are these outputs compatible with other client in the pool?
|
2015-03-02 00:09:33 +01:00
|
|
|
bool IsCompatibleWithEntries(std::vector<CTxOut>& vout);
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
// Is this amount compatible with other client in the pool?
|
|
|
|
bool IsCompatibleWithSession(int64_t nAmount, CTransaction txCollateral, std::string& strReason);
|
|
|
|
|
|
|
|
// Passively run Darksend in the background according to the configuration in settings (only for QT)
|
|
|
|
bool DoAutomaticDenominating(bool fDryRun=false, bool ready=false);
|
2014-12-30 01:09:34 +01:00
|
|
|
bool PrepareDarksendDenominate();
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
// check for process in Darksend
|
|
|
|
void Check();
|
2015-03-02 00:09:33 +01:00
|
|
|
void CheckFinalTransaction();
|
2014-12-09 02:17:57 +01:00
|
|
|
// charge fees to bad actors
|
|
|
|
void ChargeFees();
|
|
|
|
// rarely charge fees to pay miners
|
|
|
|
void ChargeRandomFees();
|
|
|
|
void CheckTimeout();
|
2015-03-02 00:09:33 +01:00
|
|
|
void CheckForCompleteQueue();
|
2014-12-09 02:17:57 +01:00
|
|
|
// check to make sure a signature matches an input in the pool
|
|
|
|
bool SignatureValid(const CScript& newSig, const CTxIn& newVin);
|
|
|
|
// if the collateral is valid given by a client
|
|
|
|
bool IsCollateralValid(const CTransaction& txCollateral);
|
|
|
|
// add a clients entry to the pool
|
|
|
|
bool AddEntry(const std::vector<CTxIn>& newInput, const int64_t& nAmount, const CTransaction& txCollateral, const std::vector<CTxOut>& newOutput, std::string& error);
|
2015-03-02 00:09:33 +01:00
|
|
|
|
|
|
|
// add an anonymous output/inputs/sig
|
|
|
|
bool AddAnonymousOutput(const CTxOut& out) {return anonTx.AddOutput(out);}
|
|
|
|
bool AddAnonymousInput(const CTxIn& in) {return anonTx.AddInput(in);}
|
|
|
|
bool AddAnonymousSig(const CTxIn& in) {return anonTx.AddSig(in);}
|
|
|
|
bool AddRelaySignature(vector<unsigned char> vchMasternodeRelaySigIn, int nMasternodeBlockHeightIn, std::string strSharedKey) {
|
|
|
|
vchMasternodeRelaySig = vchMasternodeRelaySigIn;
|
|
|
|
nMasternodeBlockHeight = nMasternodeBlockHeightIn;
|
|
|
|
strMasternodeSharedKey = strSharedKey;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
// add signature to a vin
|
|
|
|
bool AddScriptSig(const CTxIn& newVin);
|
|
|
|
// are all inputs signed?
|
|
|
|
bool SignaturesComplete();
|
|
|
|
// as a client, send a transaction to a masternode to start the denomination process
|
|
|
|
void SendDarksendDenominate(std::vector<CTxIn>& vin, std::vector<CTxOut>& vout, int64_t amount);
|
|
|
|
// get masternode updates about the progress of darksend
|
|
|
|
bool StatusUpdate(int newState, int newEntriesCount, int newAccepted, std::string& error, int newSessionID=0);
|
|
|
|
|
|
|
|
// as a client, check and sign the final transaction
|
|
|
|
bool SignFinalTransaction(CTransaction& finalTransactionNew, CNode* node);
|
|
|
|
|
|
|
|
// get the last valid block hash for a given modulus
|
|
|
|
bool GetLastValidBlockHash(uint256& hash, int mod=1, int nBlockHeight=0);
|
|
|
|
// process a new block
|
|
|
|
void NewBlock();
|
|
|
|
void CompletedTransaction(bool error, std::string lastMessageNew);
|
|
|
|
void ClearLastMessage();
|
|
|
|
// used for liquidity providers
|
|
|
|
bool SendRandomPaymentToSelf();
|
2015-03-02 00:09:33 +01:00
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
// split up large inputs or make fee sized inputs
|
2015-01-25 22:18:26 +01:00
|
|
|
bool MakeCollateralAmounts();
|
2015-01-15 15:41:56 +01:00
|
|
|
bool CreateDenominated(int64_t nTotalValue);
|
2015-03-02 00:09:33 +01:00
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
// get the denominations for a list of outputs (returns a bitshifted integer)
|
|
|
|
int GetDenominations(const std::vector<CTxOut>& vout);
|
2014-12-28 00:45:07 +01:00
|
|
|
void GetDenominationsToString(int nDenom, std::string& strDenom);
|
2015-03-02 00:09:33 +01:00
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
// get the denominations for a specific amount of darkcoin.
|
2014-12-30 23:42:50 +01:00
|
|
|
int GetDenominationsByAmount(int64_t nAmount, int nDenomTarget=0);
|
2014-12-09 02:17:57 +01:00
|
|
|
int GetDenominationsByAmounts(std::vector<int64_t>& vecAmount);
|
|
|
|
|
|
|
|
|
2015-03-02 00:09:33 +01:00
|
|
|
//
|
|
|
|
// Relay Darksend Messages
|
|
|
|
//
|
|
|
|
|
|
|
|
void RelayFinalTransaction(const int sessionID, const CTransaction& txNew);
|
|
|
|
void RelaySignaturesAnon(std::vector<CTxIn>& vin);
|
|
|
|
void RelayInAnon(std::vector<CTxIn>& vin, std::vector<CTxOut>& vout);
|
|
|
|
void RelayIn(const std::vector<CTxIn>& vin, const int64_t& nAmount, const CTransaction& txCollateral, const std::vector<CTxOut>& vout);
|
|
|
|
void RelayStatus(const int sessionID, const int newState, const int newEntriesCount, const int newAccepted, const std::string error="");
|
|
|
|
void RelayCompletedTransaction(const int sessionID, const bool error, const std::string errorMessage);
|
|
|
|
};
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
void ThreadCheckDarkSendPool();
|
|
|
|
|
|
|
|
#endif
|