Merge #925: fix a bug in #920

e7a2670 fix a bug in #920
This commit is contained in:
UdjinM6 2016-07-30 15:34:48 +04:00 committed by Holger Schinzel
parent 17dfbdea1b
commit 36c28fad1b

View File

@ -371,7 +371,7 @@ CMasternode *CMasternodeMan::FindRandomNotInVec(std::vector<CTxIn> &vecToExclude
}
if(fExclude) continue;
// found the one not in vecToExclude
return &mn;
return Find(mn.vin);
}
return NULL;