Skip to content

Commit

Permalink
Transpile 88ac712e
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 8, 2023
1 parent f55babc commit 31f9fb9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion contracts/utils/MulticallUpgradeable.sol
Expand Up @@ -38,7 +38,6 @@ abstract contract MulticallUpgradeable is Initializable, ContextUpgradeable {

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

0 comments on commit 31f9fb9

Please sign in to comment.