From e3f5bbea37291eb6fc65dbc8bbf9c7fe794c4852 Mon Sep 17 00:00:00 2001 From: T1MOH593 <79079180+T1MOH593@users.noreply.github.com> Date: Tue, 20 Aug 2024 16:45:21 +0400 Subject: [PATCH] Fix incorrect comment copied from previous function (#429) --- assets/erc-3448/MetaProxyFactory.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/erc-3448/MetaProxyFactory.sol b/assets/erc-3448/MetaProxyFactory.sol index e7c3679124..e8286b36ef 100644 --- a/assets/erc-3448/MetaProxyFactory.sol +++ b/assets/erc-3448/MetaProxyFactory.sol @@ -85,7 +85,7 @@ contract MetaProxyFactory { mstore(ptr, length) ptr := add(ptr, 32) - // The size is deploy code + contract code + calldatasize - 4 + 32. + // The size is deploy code + contract code + length + 32. addr := create(0, start, sub(ptr, start)) } }