code-423n4 / 2022-05-cally-findings

2 stars 0 forks source link

Upgraded Q -> M from 41 [1654474648312] #335

Closed code423n4 closed 2 years ago

code423n4 commented 2 years ago

Judge has assessed an item in Issue #41 as Medium risk. The relevant finding follows:

L02: Lack of upper bound for feeRate Line References https://github.com/code-423n4/2022-05-cally/blob/1849f9ee12434038aa80753266ce6a2f2b082c59/contracts/src/Cally.sol#L120

Description Fees can be set above 1e18, preventing options from being exercised.

Recommended Mitigation Steps Consider having a hard cap of x% < 100%.

// Eg. cap protocol fee to max 5% require(feeRate_ < 5e16, "feeRate limit exceeded");

HardlyDifficult commented 2 years ago

Dupe of https://github.com/code-423n4/2022-05-cally-findings/issues/48