mirror of
https://github.com/Instadapp/InstaContract.git
synced 2024-07-29 22:47:45 +00:00
10 lines
146 B
Solidity
10 lines
146 B
Solidity
|
pragma solidity ^0.4.23;
|
||
|
|
||
|
|
||
|
contract ProxyTest {
|
||
|
|
||
|
function sendETH() public payable {
|
||
|
address(msg.sender).transfer(msg.value);
|
||
|
}
|
||
|
|
||
|
}
|