changed forfeit rule

This commit is contained in:
Richard Ramos 2019-04-27 09:19:33 -04:00
parent 891d8d7e40
commit ae884d278c
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ contract Meritocracy {
// Locals
uint256 registryLength = registry.length;
// Requirements
require(block.timestamp >= lastForfeit + 1 weeks); // prevents admins accidently calling too quickly.
require(block.timestamp >= lastForfeit + 6 days); // prevents admins accidently calling too quickly.
// Body
lastForfeit = block.timestamp;
for (uint256 i = 0; i < registryLength; i++) { // should never be longer than maxContributors, see addContributor