crytic/slither
Vedi su GitHubConstants implementing interface getters are marked as `UPPER_CASE_WITH_UNDERSCORES`
Open
#930 aperta il 27 ago 2021
enhancementgood first issuehelp wanted
Metriche repository
- Star
- (4769 star)
- Metriche merge PR
- (Merge medio 54g 9h) (2 PR mergiate in 30 g)
Descrizione
interface I {
function version() external view returns (uint256);
}
contract C is I {
uint256 public constant override version = 1;
}
Due to the override specifier, the naming schema should not be checked at C.version.