Skip to content

Commit

Permalink
Fix vote ratecheck (#2813)
Browse files Browse the repository at this point in the history
  • Loading branch information
UdjinM6 committed Mar 30, 2019
1 parent ad7defb commit aeba4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/governance-object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ bool CGovernanceObject::ProcessVote(CNode* pfrom,
<< ", time delta = " << nTimeDelta;
LogPrint("gobject", "%s\n", ostr.str());
exception = CGovernanceException(ostr.str(), GOVERNANCE_EXCEPTION_TEMPORARY_ERROR);
nVoteTimeUpdate = nNow;
return false;
}
nVoteTimeUpdate = nNow;
}

bool onlyVotingKeyAllowed = nObjectType == GOVERNANCE_OBJECT_PROPOSAL && vote.GetSignal() == VOTE_SIGNAL_FUNDING;
Expand Down

0 comments on commit aeba4af

Please sign in to comment.