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