@0x/contracts-utils: Convert more 0.6 contracts

This commit is contained in:
Lawrence Forman
2020-04-09 13:20:08 -04:00
committed by Lawrence Forman
parent 98a99d96aa
commit 1509da1215

View File

@@ -21,6 +21,10 @@ pragma solidity ^0.6.5;
interface IOwnableV06 {
/// @dev The owner of this contract.
/// @return ownerAddress The owner address.
function owner() external view returns (address ownerAddress);
/// @dev Emitted by Ownable when ownership is transferred.
/// @param previousOwner The previous owner of the contract.
/// @param newOwner The new owner of the contract.