Update IAuthorizableV08.sol

This commit is contained in:
leopardracer 2025-03-01 11:42:58 +02:00 committed by GitHub
parent b319a4dceb
commit 7522cc8a19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,7 +45,7 @@ interface IAuthorizableV08 is IOwnableV08 {
/// @return authorizedAddresses Array of authorized addresses. /// @return authorizedAddresses Array of authorized addresses.
function getAuthorizedAddresses() external view returns (address[] memory authorizedAddresses); function getAuthorizedAddresses() external view returns (address[] memory authorizedAddresses);
/// @dev Whether an adderss is authorized to call privileged functions. /// @dev Whether an address is authorized to call privileged functions.
/// @param addr Address to query. /// @param addr Address to query.
/// @return isAuthorized Whether the address is authorized. /// @return isAuthorized Whether the address is authorized.
function authorized(address addr) external view returns (bool isAuthorized); function authorized(address addr) external view returns (bool isAuthorized);