Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ququzone committed Nov 24, 2023
1 parent 889b5fe commit 40ad736
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
typechain/
src/types/
lib/forge-std/
5 changes: 2 additions & 3 deletions contracts/SmartAccountFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ contract SmartAccountFactory {
}
ret = SmartAccount(
payable(
new ERC1967Proxy{salt : bytes32(salt)}(
address(accountImplementation),
abi.encodeCall(SmartAccount.initialize, (handler, validators, data))
new ERC1967Proxy{salt: bytes32(salt)}(
address(accountImplementation), abi.encodeCall(SmartAccount.initialize, (handler, validators, data))
)
)
);
Expand Down

0 comments on commit 40ad736

Please sign in to comment.