Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alrxy committed Dec 17, 2024
1 parent ea9dc68 commit ee799a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/extensions/operators/ApprovalRegisterOperators.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {IApprovalRegisterOperators} from "../../interfaces/extensions/operators/
* @title ApprovalRegisterOperators
* @notice Extends SelfRegisterOperators to add approval-based registration
*/

abstract contract ApprovalRegisterOperators is SelfRegisterOperators, IApprovalRegisterOperators {
uint64 public constant ApprovalRegisterOperators_VERSION = 1;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,17 @@ interface IApprovalRegisterOperators {
* @param index The index of the request to retrieve
* @return The registration request details
*/
function getRegistrationRequest(uint256 index) external view returns (RegistrationRequest memory);
function getRegistrationRequest(
uint256 index
) external view returns (RegistrationRequest memory);

/**
* @notice Register an operator based on a pending request
* @param requestIndex The index of the request to register
*/
function registerOperator(uint256 requestIndex) external;
function registerOperator(
uint256 requestIndex
) external;

/**
* @notice Request registration as an operator
Expand Down

0 comments on commit ee799a0

Please sign in to comment.