Skip to content

Commit 87119a0

Browse files
committed
fix test
1 parent 18d70b6 commit 87119a0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

contracts/mocks/account/AccountERC7913Mock.sol

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
pragma solidity ^0.8.24;
44

55
import {Account} from "../../account/Account.sol";
6+
import {ERC721Holder} from "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
7+
import {ERC1155Holder} from "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol";
8+
import {ERC7739} from "../../utils/cryptography/ERC7739.sol";
69
import {ERC7821} from "../../account/extensions/ERC7821.sol";
710
import {SignerERC7913} from "../../utils/cryptography/SignerERC7913.sol";
811

9-
abstract contract AccountERC7913Mock is Account, SignerERC7913, ERC7821 {
12+
abstract contract AccountERC7913Mock is Account, SignerERC7913, ERC7739, ERC7821, ERC721Holder, ERC1155Holder {
1013
constructor(bytes memory _signer) {
1114
_setSigner(_signer);
1215
}

0 commit comments

Comments
 (0)