Nested for loop can cause DoS and prevent users from entering the raffle.
In the function enterRaffle there is a nested for loop. If the players array is too big, this will cause denial of service.
Not allow users to enter the raffle.
Manual Review
More optimized approach can be used. Something like this:
Create mapping(address => bool) hasUserEntered;
Remove the second and third for loops.
Add the following to the first loop:
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.