Skip to content

Commit

Permalink
fix: rename access control confirmable
Browse files Browse the repository at this point in the history
  • Loading branch information
failingtwice committed Feb 11, 2025
1 parent b9dc9c3 commit fce5c97
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ pragma solidity 0.8.25;
import {AccessControlEnumerable} from "@openzeppelin/contracts-v5.2/access/extensions/AccessControlEnumerable.sol";

/**
* @title AccessControlMutuallyConfirmable
* @title AccessControlConfirmable
* @author Lido
* @notice An extension of AccessControlEnumerable that allows exectuing functions by mutual confirmation.
* @dev This contract extends AccessControlEnumerable and adds a confirmation mechanism in the form of a modifier.
*/
abstract contract AccessControlMutuallyConfirmable is AccessControlEnumerable {
abstract contract AccessControlConfirmable is AccessControlEnumerable {
/**
* @notice Tracks confirmations
* - callId: unique identifier for the call, derived as `keccak256(msg.data)`
Expand Down

0 comments on commit fce5c97

Please sign in to comment.