//Write your own contracts here. Currently compiles using solc v0.4.15+commit.bbb8e64f. contract Ownable { address public owner; function transferOwnership(address _newOwner) public { owner = _newOwner; } modifier onlyOwner() { require(msg.sender == owner); _; } }
0.7.1