InstaContract/contracts/v2/ProxyTest.sol

10 lines
146 B
Solidity
Raw Permalink Normal View History

pragma solidity ^0.4.23;
contract ProxyTest {
function sendETH() public payable {
address(msg.sender).transfer(msg.value);
}
}