2020-04-29 10:51:07 +00:00
|
|
|
pragma solidity >=0.5.0;
|
2019-05-27 13:51:49 +00:00
|
|
|
contract selfDestructor {
|
|
|
|
int value;
|
|
|
|
|
|
|
|
constructor() public {
|
|
|
|
value = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
function selfDestruct() public {
|
|
|
|
address payable nil = address(0);
|
|
|
|
selfdestruct(nil);
|
|
|
|
}
|
2020-10-26 13:51:03 +00:00
|
|
|
}
|