Skip to content

Commit

Permalink
Merge bitcoin#925: fix a bug in bitcoin#920
Browse files Browse the repository at this point in the history
e7a2670 fix a bug in bitcoin#920
  • Loading branch information
UdjinM6 authored and schinzelh committed Jul 30, 2016
1 parent 17dfbde commit 36c28fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/masternodeman.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 36c28fa

Please sign in to comment.