Switch function name to destroyAndSend

This commit is contained in:
Maxim Averin
2017-05-09 23:20:44 +03:00
parent 4de772f5ed
commit cf7bc06856
3 changed files with 3 additions and 4 deletions

View File

@ -7,14 +7,13 @@ 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 {
function destroyAndSend(address _recipient) onlyOwner {
selfdestruct(_recipient);
}
}