Replace double functionDelegateCall

This commit is contained in:
ernestognw
2023-12-08 08:49:17 -06:00
parent a83918df14
commit 88ac712e06

View File

@ -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;