From 3d42be9fa5dc3262728a23e37501ec0f2654725d Mon Sep 17 00:00:00 2001 From: Vectorized Date: Sat, 22 Feb 2025 13:11:52 +0000 Subject: [PATCH] Nit EIP7702Proxy comments --- src/accounts/EIP7702Proxy.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accounts/EIP7702Proxy.sol b/src/accounts/EIP7702Proxy.sol index 60c5533de..b821674dd 100644 --- a/src/accounts/EIP7702Proxy.sol +++ b/src/accounts/EIP7702Proxy.sol @@ -106,7 +106,7 @@ contract EIP7702Proxy { // Workflow for the EIP7702 authority (i.e. the EOA). let impl := sload(_ERC1967_IMPLEMENTATION_SLOT) // The preferred implementation on the EOA. calldatacopy(0x00, 0x00, calldatasize()) // Copy the calldata for the delegatecall. - // If the EOA's implementation, perform the initialization workflow. + // If the preferred implementation is `address(0)`, perform the initialization workflow. if iszero(shl(96, impl)) { if iszero( and( // The arguments of `and` are evaluated from right to left.