dsa-polygon-migration/contracts/mock/funder.sol

9 lines
182 B
Solidity
Raw Normal View History

2021-04-18 07:45:20 +00:00
pragma solidity ^0.7.0;
contract Funder {
receive() external payable {}
function kill() external {
selfdestruct(0x0000000000000000000000000000000000001001);
}
}