add destroy function, allowing send funds to recepient

This commit is contained in:
Maxim Averin
2017-05-08 19:34:05 +03:00
parent f7a7fc3b06
commit 4de772f5ed
3 changed files with 20 additions and 2 deletions

View File

@ -7,9 +7,14 @@ import "../ownership/Ownable.sol";
/*
* Destructible
* Base contract that can be destroyed by owner. All funds in contract will be sent to the owner.
* In second function all funds will be sent to the recepient.
*/
contract Destructible is Ownable {
function destroy() onlyOwner {
selfdestruct(owner);
}
function destroyAndSendRecepient(address _recipient) onlyOwner {
selfdestruct(_recipient);
}
}