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