Omniscia Echidna Finance Audit

EcdPtpToken Code Style Findings

EcdPtpToken Code Style Findings

EPT-01C: Inexistent Error Message

TypeSeverityLocation
Code StyleInformationalEcdPtpToken.sol:L18

Description:

The linked require check has no error message explicitly defined.

Example:

contracts/core/EcdPtpToken.sol
18require(operator == address(0x0));

Recommendation:

We advise one to be set so to aid in the validation of the require's condition as well as the legibility of the codebase.

Alleviation:

An error message was properly introduced in the referenced require check.