just commit check.

This commit is contained in:
Sowmayjain 2019-03-04 02:49:27 +05:30
parent 223999c84f
commit d7a18ef75a

View File

@ -3,11 +3,11 @@ pragma solidity ^0.4.23;
contract ProxyTest {
event ETHSent(uint amt);
event ETHSend(uint amt);
function sendETH() public payable {
address(msg.sender).transfer(msg.value);
emit ETHSent(msg.value);
emit ETHSend(msg.value);
}
}