Merge pull request #571 from quantum13/patch-1

Small code style change
pull/577/head
Francisco Giordano 7 years ago committed by GitHub
commit 492ef4a419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      contracts/ownership/Ownable.sol

@ -35,7 +35,7 @@ contract Ownable {
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) onlyOwner public {
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
OwnershipTransferred(owner, newOwner);
owner = newOwner;

Loading…
Cancel
Save