diff --git a/ERCS/erc-7821.md b/ERCS/erc-7821.md index ee1ce433fe..7487fa7693 100644 --- a/ERCS/erc-7821.md +++ b/ERCS/erc-7821.md @@ -38,13 +38,6 @@ The minimal batch executor interface is defined as follows: ```solidity /// @dev Interface for minimal batch executor. interface IERC7821 { - /// @dev Call struct for the `execute` function. - struct Call { - address target; // Replaced with `address(this)` if `address(0)`. - uint256 value; // Amount of native currency (i.e. Ether) to send. - bytes data; // Calldata to send with the call. - } - /// @dev Executes the calls in `executionData`. /// Reverts and bubbles up error if any call fails. ///