Skip to content

Commit

Permalink
fix: pyaable
Browse files Browse the repository at this point in the history
  • Loading branch information
ypatil12 committed Oct 24, 2024
1 parent bc436ae commit c6fbc76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contracts/periphery/Operator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import "@openzeppelin/contracts/interfaces/IERC1271.sol";
contract Operator is RolesAuthority {
constructor(address _owner) RolesAuthority(_owner) {}

function multicall(address[] memory targets, bytes[] memory data) external payable returns (bytes[] memory results) {
function multicall(address[] memory targets, bytes[] memory data) external returns (bytes[] memory results) {
require(targets.length == data.length);

results = new bytes[](targets.length);
Expand Down

0 comments on commit c6fbc76

Please sign in to comment.