From 6dcf8c55fe119b479e80b102c4496c81d79c7d23 Mon Sep 17 00:00:00 2001 From: howydev <132113803+howydev@users.noreply.github.com> Date: Thu, 18 Jul 2024 16:01:31 -0700 Subject: [PATCH] chore: comments --- src/account/AccountFactory.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/account/AccountFactory.sol b/src/account/AccountFactory.sol index 362c6ad7..bd9662ee 100644 --- a/src/account/AccountFactory.sol +++ b/src/account/AccountFactory.sol @@ -27,8 +27,8 @@ contract AccountFactory is Ownable { } /** - * create an account, and return its address. - * returns the address even if the account is already deployed. + * Create an account, and return its address. + * Returns the address even if the account is already deployed. * Note that during user operation execution, this method is called only if the account is not deployed. * This method returns an existing account address so that entryPoint.getSenderAddress() would work even after * account creation @@ -61,7 +61,7 @@ contract AccountFactory is Ownable { } /** - * alculate the counterfactual address of this account as it would be returned by createAccount() + * Calculate the counterfactual address of this account as it would be returned by createAccount() */ function getAddress(address owner, uint256 salt) public view returns (address) { return Create2.computeAddress(getSalt(owner, salt), _PROXY_BYTECODE_HASH);