9 lines
166 B
Solidity
9 lines
166 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity >=0.8.17;
|
||
|
|
||
|
contract SelfDestruct {
|
||
|
function destroy() public {
|
||
|
selfdestruct(payable(msg.sender));
|
||
|
}
|
||
|
}
|