mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 21:42:47 +01:00
fixed round counting function
This commit is contained in:
parent
42c3d48fc9
commit
5d9bc6927b
@ -9,7 +9,7 @@
|
||||
#define CLIENT_VERSION_MAJOR 0
|
||||
#define CLIENT_VERSION_MINOR 10
|
||||
#define CLIENT_VERSION_REVISION 12
|
||||
#define CLIENT_VERSION_BUILD 30
|
||||
#define CLIENT_VERSION_BUILD 31
|
||||
|
||||
// Set to true for release, false for prerelease or test build
|
||||
#define CLIENT_VERSION_IS_RELEASE true
|
||||
|
20
src/main.cpp
20
src/main.cpp
@ -7446,20 +7446,25 @@ int CDarkSendPool::GetInputDarksendRounds(CTxIn in, int rounds)
|
||||
std::string padding = "";
|
||||
padding.insert(0, ((rounds+1)*5)+3, ' ');
|
||||
|
||||
//LogPrintf(" - %s %d\n", in.prevout.hash.ToString().c_str(), rounds);
|
||||
|
||||
|
||||
CWalletTx tx;
|
||||
uint256 hash;
|
||||
if(pwalletMain->GetTransaction(in.prevout.hash,tx)){
|
||||
if(tx.vout[in.prevout.n].nValue == DARKSEND_FEE) return -3;
|
||||
|
||||
if(rounds == 0){ //make sure the final output is non-denominate
|
||||
bool found = false;
|
||||
BOOST_FOREACH(int64 d, darkSendDenominations)
|
||||
if(tx.vout[in.prevout.n].nValue == d) found = true;
|
||||
|
||||
if(!found) {
|
||||
//LogPrintf("rounds :: %s %s %d NOT DENOM\n", padding.c_str(), in.ToString().c_str(), rounds);
|
||||
//LogPrintf(" - NOT DENOM\n");
|
||||
return -2;
|
||||
}
|
||||
}
|
||||
bool found = false;
|
||||
|
||||
BOOST_FOREACH(CTxOut out, tx.vout){
|
||||
BOOST_FOREACH(int64 d, darkSendDenominations)
|
||||
if(out.nValue == d)
|
||||
@ -7467,20 +7472,16 @@ int CDarkSendPool::GetInputDarksendRounds(CTxIn in, int rounds)
|
||||
}
|
||||
|
||||
if(!found) {
|
||||
//LogPrintf("rounds :: %s %s %d NOT FOUND\n", padding.c_str(), in.ToString().c_str(), rounds);
|
||||
//LogPrintf(" - NOT FOUND\n");
|
||||
return rounds;
|
||||
}
|
||||
|
||||
|
||||
//LogPrintf("rounds :: %s %s %d FOUND\n", padding.c_str(), in.ToString().c_str(), rounds);
|
||||
|
||||
// find my vin and look that up
|
||||
BOOST_FOREACH(CTxIn in2, tx.vin) {
|
||||
//LogPrintf("rounds :: %s %s %d VIN\n", padding.c_str(), in.ToString().c_str(), rounds);
|
||||
//LogPrintf("CDarkSendPool::GetInputDarksendRounds :: %d %d %s - %s\n", rounds, pwalletMain->IsMine(in2), in2.ToString().c_str());
|
||||
if(pwalletMain->IsMine(in2)){
|
||||
//LogPrintf("rounds :: %s %s %d NEXT\n", padding.c_str(), in.ToString().c_str(), rounds);
|
||||
return GetInputDarksendRounds(in2, rounds+1);
|
||||
int n = GetInputDarksendRounds(in2, rounds+1);
|
||||
if(n != -3) return n;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
@ -7490,6 +7491,7 @@ int CDarkSendPool::GetInputDarksendRounds(CTxIn in, int rounds)
|
||||
return rounds-1;
|
||||
}
|
||||
|
||||
|
||||
void CDarkSendPool::SubmitMasternodeVote(CTxIn& vinWinningMasternode, CTxIn& vinMasterNodeFrom, int64 nBlockHeight)
|
||||
{
|
||||
//either way it's voting
|
||||
|
Loading…
Reference in New Issue
Block a user