We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55babc commit 31f9fb9Copy full SHA for 31f9fb9
contracts/utils/MulticallUpgradeable.sol
@@ -38,7 +38,6 @@ abstract contract MulticallUpgradeable is Initializable, ContextUpgradeable {
38
39
results = new bytes[](data.length);
40
for (uint256 i = 0; i < data.length; i++) {
41
- results[i] = AddressUpgradeable.functionDelegateCall(address(this), data[i]);
42
results[i] = AddressUpgradeable.functionDelegateCall(address(this), bytes.concat(data[i], context));
43
}
44
return results;
0 commit comments