Open vm06007 opened 1 year ago
The linked input arguments are set as memory in external function(s).
memory
external
function addOracleBulk( address[] memory _tokenAddresses, IPriceFeed[] memory _priceFeedAddresses, address[][] memory _underlyingFeedTokens ) external onlyMaster {
We advise them to be set as calldata optimizing their read-access gas cost.
calldata
Resolved in: https://github.com/wise-foundation/lending-audit/pull/131
WOH-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.