wise-foundation / lending-audit

5 stars 4 forks source link

[COR-01S] Literal Equality of `bool` Variable #94

Open vm06007 opened 1 year ago

vm06007 commented 1 year ago

COR-01S: Literal Equality of bool Variable

Type Severity Location
Gas Optimization CallOptionalReturn.sol:L38

Description:

The linked bool comparison is performed between a variable and a bool literal.

Example:

if (call == false) {

Recommendation:

We advise the bool variable to be utilized directly either in its negated (!) or original form.

vm06007 commented 1 year ago