Skip to content

Commit

Permalink
Replace double functionDelegateCall
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestognw committed Dec 8, 2023
1 parent a83918d commit 88ac712
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contracts/utils/Multicall.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ abstract contract Multicall is Context {

results = new bytes[](data.length);
for (uint256 i = 0; i < data.length; i++) {
results[i] = Address.functionDelegateCall(address(this), data[i]);
results[i] = Address.functionDelegateCall(address(this), bytes.concat(data[i], context));
}
return results;
Expand Down

0 comments on commit 88ac712

Please sign in to comment.