mirror of
https://github.com/Instadapp/smart-contract.git
synced 2024-07-29 22:08:07 +00:00
13 lines
209 B
Solidity
13 lines
209 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
|
|
contract ProxyTest {
|
|
|
|
event ETHSent(uint amt);
|
|
|
|
function sendETH() public payable {
|
|
address(msg.sender).transfer(msg.value);
|
|
emit ETHSent(msg.value);
|
|
}
|
|
|
|
} |