Omniscia Symbiosis Finance Audit
Portal Code Style Findings
Portal Code Style Findings
POR-01C: Inexistent Error Messages
| Type | Severity | Location |
|---|---|---|
| Code Style | ![]() | Portal.sol:L84, L89 |
Description:
The linked require checks have no error messages explicitly defined.
Example:
contracts/synth-contracts/Portal.sol
89require(!paused);Recommendation:
We advise them to be set so to aid in the validation of the require's condition as well as the legibility of the codebase.
Alleviation:
Proper error messages were introduced for all linked instances.
