Files
openzeppelin-contracts/contracts/Killable.sol
Manuel Araoz c9ae7c3f1c fix killable
2016-08-09 14:22:06 -03:00

12 lines
191 B
Solidity

import "./Ownable.sol";
/*
* Killable
* Base contract that can be killed by owner
*/
contract Killable is Ownable {
function kill() {
if (msg.sender == owner) suicide(owner);
}
}