Open vm06007 opened 1 year ago
The linked input arguments are set as memory in external function(s).
memory
external
function setBeneficial( address _user, address[] memory _feeTokens ) external
We advise them to be set as calldata optimizing their read-access gas cost.
calldata
Resolved in: https://github.com/wise-foundation/lending-audit/issues/132
FMR-01S: Data Location Optimizations
Description:
The linked input arguments are set as
memory
inexternal
function(s).Example:
Recommendation:
We advise them to be set as
calldata
optimizing their read-access gas cost.