Click the line that lets ANYONE seize control of this contract:
1address public owner;2function setOwner(address who) public {3 owner = who;4}5function sweep() public onlyOwner { pay(owner, address(this).balance); }
address public owner;
function setOwner(address who) public {
owner = who;
}
function sweep() public onlyOwner { pay(owner, address(this).balance); }