Skip to content

Commit

Permalink
style: Remove commented out code and unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgonzalezra committed May 20, 2024
1 parent b0779f1 commit 8c03c2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions remappings.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@openzeppelin/contracts/=node_modules/@openzeppelin/contracts/
@openzeppelin/contracts-upgradeable/=node_modules/@openzeppelin/contracts-upgradeable/
forge-std/=node_modules/forge-std/
@account-abstraction/contracts/=node_modules/@account-abstraction/contracts/
solady/=solady/src
@account-abstraction/contracts/=node_modules/@account-abstraction/contracts/
2 changes: 1 addition & 1 deletion src/SimplePlusAccount.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { SignatureChecker } from "@openzeppelin/contracts/utils/cryptography/Sig
import { MessageHashUtils } from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";
import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import { IERC1271 } from "@openzeppelin/contracts/interfaces/IERC1271.sol";
import { EIP712 } from "@openzeppelin/contracts/utils/cryptography/EIP712.sol"; // TODO: use upgradable version
import { EIP712 } from "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import { SimpleGuardianModule } from "./SimpleGuardianModule.sol";

contract SimplePlusAccount is SimpleAccount, SimpleGuardianModule, IERC1271, EIP712 {
Expand Down

0 comments on commit 8c03c2e

Please sign in to comment.