Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ import {SafeCast} from "../../utils/math/SafeCast.sol";
* the admin of the timelock for any operation to be performed. A public, unrestricted,
* {GovernorTimelockCompound-__acceptAdmin} is available to accept ownership of the timelock.
*
* Using this model means the proposal will be operated by the {TimelockController} and not by the {Governor}. Thus,
* the assets and permissions must be attached to the {TimelockController}. Any asset sent to the {Governor} will be
* Using this model means the proposal will be operated by the {ICompoundTimelock} and not by the {Governor}. Thus,
* the assets and permissions must be attached to the {ICompoundTimelock}. Any asset sent to the {Governor} will be
* inaccessible from a proposal, unless executed via {Governor-relay}.
*/
abstract contract GovernorTimelockCompound is Governor {
ICompoundTimelock private _timelock;

/**
* @dev Emitted when the timelock controller used for proposal execution is modified.
* @dev Emitted when the timelock used for proposal execution is modified.
*/
event TimelockChange(address oldTimelock, address newTimelock);

Expand Down
Loading