Skip to content

Commit 0f1668a

Browse files
committed
fix merge
1 parent c06b53b commit 0f1668a

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

contracts/mocks/account/AccountERC7702WithModulesMock.sol

-15
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,6 @@ import {AbstractSigner} from "../../utils/cryptography/AbstractSigner.sol";
1111
import {SignerERC7702} from "../../utils/cryptography/SignerERC7702.sol";
1212

1313
abstract contract AccountERC7702WithModulesMock is Account, AccountERC7579, SignerERC7702 {
14-
function execute(
15-
bytes32 mode,
16-
bytes calldata executionData
17-
) public payable virtual override(AccountERC7579, ERC7821) {
18-
// Force resolution to AccountERC7579 (discard ERC7821 implementation)
19-
AccountERC7579.execute(mode, executionData);
20-
}
21-
22-
function supportsExecutionMode(
23-
bytes32 mode
24-
) public view virtual override(AccountERC7579, ERC7821) returns (bool result) {
25-
// Force resolution to AccountERC7579 (discard ERC7821 implementation)
26-
return AccountERC7579.supportsExecutionMode(mode);
27-
}
28-
2914
function _validateUserOp(
3015
PackedUserOperation calldata userOp,
3116
bytes32 userOpHash

0 commit comments

Comments
 (0)