killable.rst 368 B

12345678910111213141516
  1. Destructible
  2. =============================================
  3. Base contract that can be destroyed by owner.
  4. Inherits from contract Ownable.
  5. destroy( ) onlyOwner
  6. """""""""""""""""""
  7. Destroys the contract and sends funds back to the owner.
  8. destroyAndSend(address _recipient) onlyOwner
  9. """""""""""""""""""
  10. Destroys the contract and sends funds back to the _recepient.