diff --git a/contracts/v2/ProxyTest.sol b/contracts/v2/ProxyTest.sol index 824d503..38ea87f 100644 --- a/contracts/v2/ProxyTest.sol +++ b/contracts/v2/ProxyTest.sol @@ -3,8 +3,11 @@ 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); } } \ No newline at end of file