Normal behavior: claimFaucetTokens should allow a user to successfully claim faucetDrip tokens when the contract holds exactly faucetDrip tokens (the last drip should be claimable).
Specific issue: the contract checks balanceOf(address(this)) <= faucetDrip and reverts when the balance is equal to faucetDrip. This prevents the final available drip from being claimed, causing an unnecessary denial-of-service on the last token unit.
Likelihood: Low
Occurs when the contract token balance exactly equals faucetDrip (edge-case). Any normal drain sequence that leaves exactly one drip will trigger this.
Impact: Medium
Users cannot claim the final drip, faucet availability is degraded (denial of the last available claim).
The PoC sets the contract token balance to exactly faucetDrip and demonstrates that claimFaucetTokens reverts.
Change the conditional to use < so a contract with exactly faucetDrip may be claimed once.
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.