Omniscia Faith Tribe Audit
Initializable Static Analysis Findings
Initializable Static Analysis Findings
INI-01S: Inexistent Visibility Specifier
| Type | Severity | Location |
|---|---|---|
| Code Style | Informational | Initializable.sol:L5 |
Description:
The linked variable has no visibility specifier.
Example:
contracts/external/common/Initializable.sol
5bool inited = false;Recommendation:
We advise one to be set so to avoid potential compilation discrepancies in the future as the current behaviour is for the compiler to assign one automatically which can change between pragma versions.
Alleviation:
The private visibility specifier was introduced for the linked variable.