Files
openzeppelin-contracts/contracts/Ownable.sol
Manuel Araoz 0241046e1f tidy up
2016-08-16 12:51:05 -03:00

17 lines
207 B
Solidity

/*
* Ownable
* Base contract with an owner
*/
contract Ownable {
address owner;
function Ownable() {
owner = msg.sender;
}
modifier onlyOwner() {
if (msg.sender == owner)
_
}
}