DeFiFoundry
50,000 USDC
View results
Submission Details
Severity: low
Invalid

Unused Variable [Code Cleanliness]

Summary

The KeeperProxy contract contains an unused variable threshold.

Vulnerability Details

// KeeperProxy.sol
uint256 threshold; // Never used

Impact

  • Unnecessary storage slot usage

  • Increased deployment cost

  • Code confusion

Recommendations

  1. Remove the unused variable:

- uint256 threshold;
  1. Or if the variable is intended for future use, document it:

/// @notice Threshold for future feature implementation
/// @dev Currently unused - will be used for [feature description]
uint256 public threshold;
Updates

Lead Judging Commences

n0kto Lead Judge 9 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity
Assigned finding tags:

Informational or Gas

Please read the CodeHawks documentation to know which submissions are valid. If you disagree, provide a coded PoC and explain the real likelihood and the detailed impact on the mainnet without any supposition (if, it could, etc) to prove your point.

n0kto Lead Judge 9 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity
Assigned finding tags:

Informational or Gas

Please read the CodeHawks documentation to know which submissions are valid. If you disagree, provide a coded PoC and explain the real likelihood and the detailed impact on the mainnet without any supposition (if, it could, etc) to prove your point.

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.

Give us feedback!