crytic/slither
Ver no GitHubConstants implementing interface getters are marked as `UPPER_CASE_WITH_UNDERSCORES`
Open
#930 aberto em 27 de ago. de 2021
enhancementgood first issuehelp wanted
Métricas do repositório
- Stars
- (4.769 stars)
- Métricas de merge de PR
- (Mesclagem média 54d 9h) (2 fundiu PRs em 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.