Omniscia Evergon Labs Audit
FungibleTokenDO Code Style Findings
FungibleTokenDO Code Style Findings
FTD-01C: Redundant Constructor Declaration
| Type | Severity | Location |
|---|---|---|
| Code Style | ![]() | FungibleTokenDO.sol:L70 |
Description:
The referenced FungibleTokenDO::constructor is empty and invokes a superlative constructor that is also empty.
Example:
contracts/dataobjects/FungibleTokenDO.sol
70constructor() BaseDataObject() {}Recommendation:
We advise it to be omitted, optimizing the code's syntax.
Alleviation (c6b23c23d8bcd8cce85049ad959cbd711a37126b):
The redundant FungibleTokenDO::constructor declaration has been safely omitted from the codebase, optimizing its legibility.
