Skip to content

Commit

Permalink
🥑 fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
coolcode committed Dec 23, 2023
1 parent f0c8109 commit e31a9f0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/LightAccountFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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))
)
)
);
Expand Down

0 comments on commit e31a9f0

Please sign in to comment.