If a function is marked public but is not used internally, consider marking it as external.
WHY:
external functions use less gas when called from other contracts or externally (e.g. from dapps).
public functions create a wrapper to allow both internal and external calls, which consumes more gas.
Following functions in src/EggVault.sol are declared public but never used internally:
Impact: Low, making these functions external can save gas since they are not used internally.
Change the visibility of these functions from public to external since they are not used internally.
Strategy to save gas and minimize transaction costs
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.