Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ermyas committed Sep 17, 2023
1 parent 32c94e4 commit f340721
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/interfaces/EIP5164/ExecutorAware.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ abstract contract ExecutorAware {
}

/**
* @notice Get the list of trusted executors
* @return Returns an array of trusted executors
*/
* @notice Get the list of trusted executors
* @return Returns an array of trusted executors
*/
function getTrustedExecutors() public view returns (address[] memory) {
return EnumerableSet.values(trustedExecutors);
}

/**
* @notice Get the total number of trusted executors
* @return Returns the total number of trusted executors
*/
* @notice Get the total number of trusted executors
* @return Returns the total number of trusted executors
*/
function trustedExecutorsCount() public view returns (uint256) {
return EnumerableSet.length(trustedExecutors);
}
Expand Down

0 comments on commit f340721

Please sign in to comment.