@0x/contracts-utils: Make IOwnableV06 conform to IOwnable.

This commit is contained in:
Lawrence Forman 2020-04-28 12:13:57 -04:00
parent a90b463a7d
commit feb672c3cd

View File

@ -30,7 +30,7 @@ interface IOwnableV06 {
/// @param newOwner The address that will become the owner.
function transferOwnership(address newOwner) external;
/// @dev Get the owner of this contract.
/// @return owner_ The owner of this contract.
function getOwner() external view returns (address owner_);
/// @dev The owner of this contract.
/// @return ownerAddress The owner address.
function owner() external view returns (address ownerAddress);
}