Omniscia Symbiosis Finance Audit
Wrapper Code Style Findings
Wrapper Code Style Findings
WRA-01C: Inexistent Visibility Specifier
| Type | Severity | Location |
|---|---|---|
| Code Style | ![]() | Wrapper.sol:L9 |
Description:
The linked variable has no visibility specifier explicitly set.
Example:
contracts/synth-contracts/utils/Wrapper.sol
9address immutable _trustedForwarder;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 may deviate between pragma versions.
Alleviation:
The private visibility specifier was properly introduced for the linked variable.
