Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/hungry-stamps-hammer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
2 changes: 1 addition & 1 deletion contracts/access/manager/AccessManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ contract AccessManager is Context, Multicall, IAccessManager {
}

/**
* @dev Returns true if a call with `target` and `selector` is being executed via {executed}.
* @dev Returns true if a call with `target` and `selector` is being executed via {execute}.
*/
function _isExecuting(address target, bytes4 selector) private view returns (bool) {
return _executionId == _hashExecutionId(target, selector);
Expand Down
6 changes: 3 additions & 3 deletions contracts/account/Account.sol
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ abstract contract Account is AbstractSigner, IAccount {
}

/**
* @dev Sends the missing funds for executing the user operation to the {entrypoint}.
* @dev Sends the missing funds for executing the user operation to the {entryPoint}.
* The `missingAccountFunds` must be defined by the entrypoint when calling {validateUserOp}.
*/
function _payPrefund(uint256 missingAccountFunds) internal virtual {
Expand All @@ -125,7 +125,7 @@ abstract contract Account is AbstractSigner, IAccount {
}

/**
* @dev Ensures the caller is the {entrypoint}.
* @dev Ensures the caller is the {entryPoint}.
*/
function _checkEntryPoint() internal view virtual {
address sender = msg.sender;
Expand All @@ -135,7 +135,7 @@ abstract contract Account is AbstractSigner, IAccount {
}

/**
* @dev Ensures the caller is the {entrypoint} or the account itself.
* @dev Ensures the caller is the {entryPoint} or the account itself.
*/
function _checkEntryPointOrSelf() internal view virtual {
address sender = msg.sender;
Expand Down