Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/access/OwnerTwoSteps/LibOwnerTwoSteps.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ library LibOwnerTwoSteps {
}

/// @notice Initiates a two-step ownership transfer.
/// @param _newOwner The address of the new owner (set to `address(0)` to renounce).
/// @param _newOwner The address of the new owner of the contract
function transferOwnership(address _newOwner) internal {
OwnerTwoStepsStorage storage s = getStorage();
s.pendingOwner = _newOwner;
Expand Down
1 change: 0 additions & 1 deletion src/access/OwnerTwoSteps/OwnerTwoSteps.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ contract OwnerTwoStepsFacet {
}

/// @notice Set the address of the new owner of the contract
/// @dev Set _newOwner to address(0) to renounce any ownership.
/// @param _newOwner The address of the new owner of the contract
function transferOwnership(address _newOwner) external {
OwnerTwoStepsStorage storage s = getStorage();
Expand Down
Loading