Omniscia Swisscoast Audit
PriceFeed Code Style Findings
PriceFeed Code Style Findings
PFD-01C: Redundant Parenthesis Statements
Type | Severity | Location |
---|---|---|
Code Style | PriceFeed.sol:L460, L463, L481, L484 |
Description:
The referenced statements are redundantly wrapped in parenthesis' (()
).
Example:
packages/contracts/contracts/PriceFeed.sol
460return (supraResponse);
Recommendation:
We advise them to be safely omitted, increasing the legibility of the codebase.
Alleviation (04618e407b):
Two out of the four redundant parenthesis statements have been removed, partially addressing this exhibit.
Alleviation (30f7253f63):
The redundant parenthesis statements have been omitted from the remaining instances, rendering this exhibit fully addressed.