You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Stream.constructor performs a check on a storage variable instead of the parameter: require(feePercent < 10000, "fee"). This will do an unnecessary sload operation. Consider doing the check on _feePercent instead.
The text was updated successfully, but these errors were encountered:
Handle
cmichel
Vulnerability details
The
Stream.constructor
performs a check on a storage variable instead of the parameter:require(feePercent < 10000, "fee")
. This will do an unnecessarysload
operation. Consider doing the check on_feePercent
instead.The text was updated successfully, but these errors were encountered: