Skip to content

Commit c489574

Browse files
author
Evan Duffield
committed
Masternode System Bug Fixes
- Fixed a race condition with masternode node selection upon new blocks - Using nTime for lastpaid instead of the current time for high consensus
1 parent b2b2e12 commit c489574

6 files changed

+11
-12
lines changed

src/activemasternode.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ bool CActiveMasternode::Register(std::string strService, std::string strKeyMaste
226226
}
227227

228228
bool CActiveMasternode::Register(CTxIn vin, CService service, CKey keyCollateralAddress, CPubKey pubKeyCollateralAddress, CKey keyMasternode, CPubKey pubKeyMasternode, CScript donationAddress, int donationPercentage, std::string &retErrorMessage) {
229-
230229
CMasternode* pmn = mnodeman.Find(vin);
231230
if(pmn == NULL)
232231
{
@@ -239,6 +238,7 @@ bool CActiveMasternode::Register(CTxIn vin, CService service, CKey keyCollateral
239238
}
240239

241240
CMasternode mn(mnb);
241+
mn.UpdateLastSeen();
242242
mnodeman.Add(mn);
243243
}
244244

src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3240,7 +3240,7 @@ bool ProcessNewBlock(CValidationState &state, CNode* pfrom, CBlock* pblock, CDis
32403240
//UPDATE MASTERNODE LAST PAID TIME
32413241
CMasternode* pmn = mnodeman.Find(payee);
32423242
if(pmn != NULL) {
3243-
pmn->nLastPaid = GetAdjustedTime();
3243+
pmn->nLastPaid = chainActive.Tip()->nTime;
32443244
}
32453245
LogPrintf("%s : Update Masternode Last Paid Time - %d\n", __func__, chainActive.Tip()->nHeight);
32463246
}

src/masternode-payments.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ bool CMasternodePayments::GetBlockPayee(int nBlockHeight, CScript& payee)
230230
return false;
231231
}
232232

233-
bool CMasternodePayments::IsScheduled(CMasternode& mn)
233+
bool CMasternodePayments::IsScheduled(CMasternode& mn, int nNotBlockHeight)
234234
{
235235
CBlockIndex* pindexPrev = chainActive.Tip();
236236
if(pindexPrev == NULL) return false;
@@ -240,6 +240,7 @@ bool CMasternodePayments::IsScheduled(CMasternode& mn)
240240

241241
CScript payee;
242242
for(int64_t h = pindexPrev->nHeight; h <= pindexPrev->nHeight+10; h++){
243+
if(h == nNotBlockHeight) continue;
243244
if(mapMasternodeBlocks.count(h)){
244245
if(mapMasternodeBlocks[h].GetPayee(payee)){
245246
if(mnpayee == payee || mn.donationAddress == payee) {
@@ -450,14 +451,15 @@ bool CMasternodePayments::ProcessBlock(int nBlockHeight)
450451
} else {
451452
CScript payeeSource;
452453
uint256 hash;
454+
453455
if(!GetBlockHash(hash, nBlockHeight-100)) return false;
454456
unsigned int nHash;
455457
memcpy(&nHash, &hash, 2);
456458

457459
LogPrintf(" ProcessBlock Start nHeight %d. \n", nBlockHeight);
458460

459461
// pay to the oldest MN that still had no payment but its input is old enough and it was active long enough
460-
CMasternode *pmn = mnodeman.GetNextMasternodeInQueueForPayment();
462+
CMasternode *pmn = mnodeman.GetNextMasternodeInQueueForPayment(nBlockHeight);
461463
if(pmn != NULL)
462464
{
463465
LogPrintf(" Found by FindOldestNotInVec \n");

src/masternode-payments.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class CMasternodePayments
192192

193193
bool GetBlockPayee(int nBlockHeight, CScript& payee);
194194
bool IsTransactionValid(const CTransaction& txNew, int nBlockHeight);
195-
bool IsScheduled(CMasternode& mn);
195+
bool IsScheduled(CMasternode& mn, int nNotBlockHeight);
196196

197197
void ProcessMessageMasternodePayments(CNode* pfrom, std::string& strCommand, CDataStream& vRecv);
198198
std::string GetRequiredPaymentsString(int nBlockHeight);

src/masternodeman.cpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ bool CMasternodeMan::Add(CMasternode &mn)
206206
return false;
207207

208208
CMasternode *pmn = Find(mn.vin);
209-
210209
if (pmn == NULL)
211210
{
212211
if(fDebug) LogPrintf("CMasternodeMan: Adding new Masternode %s - %i now\n", mn.addr.ToString().c_str(), size() + 1);
@@ -365,7 +364,7 @@ CMasternode *CMasternodeMan::Find(const CPubKey &pubKeyMasternode)
365364
return NULL;
366365
}
367366

368-
CMasternode* CMasternodeMan::GetNextMasternodeInQueueForPayment()
367+
CMasternode* CMasternodeMan::GetNextMasternodeInQueueForPayment(int nBlockHeight)
369368
{
370369
LOCK(cs);
371370

@@ -377,7 +376,7 @@ CMasternode* CMasternodeMan::GetNextMasternodeInQueueForPayment()
377376
if(!mn.IsEnabled()) continue;
378377

379378
//it's in the list -- so let's skip it
380-
if(masternodePayments.IsScheduled(mn)) continue;
379+
if(masternodePayments.IsScheduled(mn, nBlockHeight)) continue;
381380

382381
//make sure it has as many confirmations as there are masternodes
383382
if(mn.GetMasternodeInputAge() < CountEnabled()) continue;
@@ -440,13 +439,11 @@ int CMasternodeMan::GetMasternodeRank(const CTxIn& vin, int64_t nBlockHeight, in
440439

441440
// scan for winner
442441
BOOST_FOREACH(CMasternode& mn, vMasternodes) {
443-
444442
if(mn.protocolVersion < minProtocol) continue;
445443
if(fOnlyActive) {
446444
mn.Check();
447445
if(!mn.IsEnabled()) continue;
448446
}
449-
450447
uint256 n = mn.CalculateScore(1, nBlockHeight);
451448
unsigned int n2 = 0;
452449
memcpy(&n2, &n, sizeof(n2));
@@ -459,7 +456,7 @@ int CMasternodeMan::GetMasternodeRank(const CTxIn& vin, int64_t nBlockHeight, in
459456
int rank = 0;
460457
BOOST_FOREACH (PAIRTYPE(unsigned int, CTxIn)& s, vecMasternodeScores){
461458
rank++;
462-
if(s.second == vin) {
459+
if(s.second.prevout == vin.prevout) {
463460
return rank;
464461
}
465462
}

src/masternodeman.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class CMasternodeMan
110110
CMasternode* Find(const CPubKey& pubKeyMasternode);
111111

112112
/// Find an entry in the masternode list that is next to be paid
113-
CMasternode* GetNextMasternodeInQueueForPayment();
113+
CMasternode* GetNextMasternodeInQueueForPayment(int nBlockHeight);
114114

115115
/// Find a random entry
116116
CMasternode* FindRandom();

0 commit comments

Comments
 (0)