diff --git a/src/LightAccountFactory.sol b/src/LightAccountFactory.sol index cc0da05..3342e6e 100644 --- a/src/LightAccountFactory.sol +++ b/src/LightAccountFactory.sol @@ -38,9 +38,8 @@ contract LightAccountFactory { } ret = LightAccount( payable( - new ERC1967Proxy{salt : bytes32(salt)}( - address(accountImplementation), - abi.encodeCall(LightAccount.initialize, (owner)) + new ERC1967Proxy{salt: bytes32(salt)}( + address(accountImplementation), abi.encodeCall(LightAccount.initialize, (owner)) ) ) );