Merge pull request #1074 from nmarley/bugfix-vote-counting

Bugfix: vote counting
This commit is contained in:
Evan Duffield 2016-10-12 13:35:29 -07:00 committed by GitHub
commit 8aaa8a22b0

View File

@ -1100,8 +1100,8 @@ int CGovernanceManager::CountMatchingVotes(CGovernanceObject& govobj, vote_signa
LOCK(cs); LOCK(cs);
int nCount = 0; int nCount = 0;
std::map<uint256, CGovernanceVote>::iterator it = mapVotesByHash.begin(); std::map<uint256, CGovernanceVote>::iterator it = mapVotesByType.begin();
while(it != mapVotesByHash.end()) { while(it != mapVotesByType.end()) {
if(it->second.IsValid() && if(it->second.IsValid() &&
it->second.GetSignal() == eVoteSignalIn && it->second.GetSignal() == eVoteSignalIn &&
it->second.GetOutcome() == eVoteOutcomeIn && it->second.GetOutcome() == eVoteOutcomeIn &&