We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
functionDelegateCall
1 parent a83918d commit 88ac712Copy full SHA for 88ac712
contracts/utils/Multicall.sol
@@ -32,7 +32,6 @@ abstract contract Multicall is Context {
32
33
results = new bytes[](data.length);
34
for (uint256 i = 0; i < data.length; i++) {
35
- results[i] = Address.functionDelegateCall(address(this), data[i]);
36
results[i] = Address.functionDelegateCall(address(this), bytes.concat(data[i], context));
37
}
38
return results;
0 commit comments