Skip to content

Commit 4f8718c

Browse files
committed
Update submodule
1 parent bc0c040 commit 4f8718c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contracts/account/AccountCore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ abstract contract AccountCore is AbstractSigner, IAccount {
4747
* @dev Canonical entry point for the account that forwards and validates user operations.
4848
*/
4949
function entryPoint() public view virtual returns (IEntryPoint) {
50-
return ERC4337Utils.ENTRYPOINT;
50+
return ERC4337Utils.ENTRYPOINT_V07;
5151
}
5252

5353
/**

contracts/account/paymaster/PaymasterCore.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ abstract contract PaymasterCore is IPaymaster {
3939

4040
/// @dev Canonical entry point for the account that forwards and validates user operations.
4141
function entryPoint() public view virtual returns (IEntryPoint) {
42-
return ERC4337Utils.ENTRYPOINT;
42+
return ERC4337Utils.ENTRYPOINT_V07;
4343
}
4444

4545
/// @inheritdoc IPaymaster

lib/@openzeppelin-contracts

0 commit comments

Comments
 (0)