Crypto-Birdies/contracts/Destroyable.sol
2021-12-07 15:36:30 +08:00

10 lines
162 B
Solidity

pragma solidity ^0.5.12;
import "./Ownable.sol";
contract Destroyable is Ownable{
function close() public onlyOwner {
selfdestruct(_owner);
}
}