Skip to content

Commit 88ac712

Browse files
committed
Replace double functionDelegateCall
1 parent a83918d commit 88ac712

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

contracts/utils/Multicall.sol

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ abstract contract Multicall is Context {
3232

3333
results = new bytes[](data.length);
3434
for (uint256 i = 0; i < data.length; i++) {
35-
results[i] = Address.functionDelegateCall(address(this), data[i]);
3635
results[i] = Address.functionDelegateCall(address(this), bytes.concat(data[i], context));
3736
}
3837
return results;

0 commit comments

Comments
 (0)