You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
392 B
16 lines
392 B
7 years ago
|
pragma solidity ^0.4.18;
|
||
8 years ago
|
|
||
|
// @title Force Ether into a contract.
|
||
|
// @notice even
|
||
|
// if the contract is not payable.
|
||
|
// @notice To use, construct the contract with the target as argument.
|
||
|
// @author Remco Bloemen <remco@neufund.org>
|
||
|
contract ForceEther {
|
||
8 years ago
|
|
||
7 years ago
|
function ForceEther() public payable { }
|
||
8 years ago
|
|
||
7 years ago
|
function destroyAndSend(address _recipient) public {
|
||
8 years ago
|
selfdestruct(_recipient);
|
||
8 years ago
|
}
|
||
|
}
|