Ricardo Guilherme Schmidt b33cf37bac
Update solidity to 0.6.2 and to openzeppelin-contracts 3.2.0 (#119)
* solc 0.6.2 + openzeppelin-contracts 3.2.0

* Fixes #114
2020-09-25 16:47:08 -03:00

39 lines
1.1 KiB
Solidity

// SPDX-License-Identifier: CC0-1.0
pragma solidity 0.6.2;
/// @dev `Owned` is a base level contract that assigns an `owner` that can be
/// later changed
contract Owned {
/// @dev `owner` is the only address that can call a function with this
/// modifier
modifier onlyOwner() {
require(msg.sender == owner, "Unauthorized");
_;
}
address payable public owner;
/// @notice The Constructor assigns the message sender to be `owner`
constructor() internal {
owner = msg.sender;
}
address payable public newOwner;
/// @notice `owner` can step down and assign some other address to this role
/// @param _newOwner The address of the new owner. 0x0 can be used to create
/// an unowned neutral vault, however that cannot be undone
function changeOwner(address payable _newOwner) public onlyOwner {
require(_newOwner != address(0), "Invalid address");
newOwner = _newOwner;
}
function acceptOwnership() public {
if (msg.sender == newOwner) {
owner = newOwner;
}
}
}