@@ -206,7 +206,6 @@ bool CMasternodeMan::Add(CMasternode &mn)
206
206
return false ;
207
207
208
208
CMasternode *pmn = Find (mn.vin );
209
-
210
209
if (pmn == NULL )
211
210
{
212
211
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)
365
364
return NULL ;
366
365
}
367
366
368
- CMasternode* CMasternodeMan::GetNextMasternodeInQueueForPayment ()
367
+ CMasternode* CMasternodeMan::GetNextMasternodeInQueueForPayment (int nBlockHeight )
369
368
{
370
369
LOCK (cs);
371
370
@@ -377,7 +376,7 @@ CMasternode* CMasternodeMan::GetNextMasternodeInQueueForPayment()
377
376
if (!mn.IsEnabled ()) continue ;
378
377
379
378
// it's in the list -- so let's skip it
380
- if (masternodePayments.IsScheduled (mn)) continue ;
379
+ if (masternodePayments.IsScheduled (mn, nBlockHeight )) continue ;
381
380
382
381
// make sure it has as many confirmations as there are masternodes
383
382
if (mn.GetMasternodeInputAge () < CountEnabled ()) continue ;
@@ -440,13 +439,11 @@ int CMasternodeMan::GetMasternodeRank(const CTxIn& vin, int64_t nBlockHeight, in
440
439
441
440
// scan for winner
442
441
BOOST_FOREACH (CMasternode& mn, vMasternodes) {
443
-
444
442
if (mn.protocolVersion < minProtocol) continue ;
445
443
if (fOnlyActive ) {
446
444
mn.Check ();
447
445
if (!mn.IsEnabled ()) continue ;
448
446
}
449
-
450
447
uint256 n = mn.CalculateScore (1 , nBlockHeight);
451
448
unsigned int n2 = 0 ;
452
449
memcpy (&n2, &n, sizeof (n2));
@@ -459,7 +456,7 @@ int CMasternodeMan::GetMasternodeRank(const CTxIn& vin, int64_t nBlockHeight, in
459
456
int rank = 0 ;
460
457
BOOST_FOREACH (PAIRTYPE (unsigned int , CTxIn)& s, vecMasternodeScores){
461
458
rank++;
462
- if (s.second == vin) {
459
+ if (s.second . prevout == vin. prevout ) {
463
460
return rank;
464
461
}
465
462
}
0 commit comments