changed forfeit rule
This commit is contained in:
parent
891d8d7e40
commit
ae884d278c
|
@ -255,7 +255,7 @@ contract Meritocracy {
|
||||||
// Locals
|
// Locals
|
||||||
uint256 registryLength = registry.length;
|
uint256 registryLength = registry.length;
|
||||||
// Requirements
|
// 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
|
// Body
|
||||||
lastForfeit = block.timestamp;
|
lastForfeit = block.timestamp;
|
||||||
for (uint256 i = 0; i < registryLength; i++) { // should never be longer than maxContributors, see addContributor
|
for (uint256 i = 0; i < registryLength; i++) { // should never be longer than maxContributors, see addContributor
|
||||||
|
|
Loading…
Reference in New Issue