crytic/slither
View on GitHubConstants implementing interface getters are marked as `UPPER_CASE_WITH_UNDERSCORES`
Open
#930 opened on Aug 27, 2021
enhancementgood first issuehelp wanted
Repository metrics
- Stars
- (4,769 stars)
- PR merge metrics
- (Avg merge 54d 9h) (2 merged PRs in 30d)
Description
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.