crytic/slither
Voir sur GitHubConstants implementing interface getters are marked as `UPPER_CASE_WITH_UNDERSCORES`
Open
#930 ouverte le 27 août 2021
enhancementgood first issuehelp wanted
Métriques du dépôt
- Stars
- (4 769 stars)
- Métriques de merge PR
- (Merge moyen 54j 9h) (2 PRs mergées en 30 j)
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.