dsa-polygon-migration/contracts/mock/funder.sol
2021-04-18 13:15:20 +05:30

9 lines
182 B
Solidity

pragma solidity ^0.7.0;
contract Funder {
receive() external payable {}
function kill() external {
selfdestruct(0x0000000000000000000000000000000000001001);
}
}