Several functions are declared as public
but are not called internally within the contract:
Using public
visibility for functions that are not called internally consumes more gas when they are called externally due to the additional code generated to support internal calls.
Change Visibility to external
: Mark functions as external
if they are not called within the contract to optimize gas usage.
Review Function Calls: Ensure that none of the functions are intended for internal use before changing their visibility.
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.