From 223999c84f97c30fb555209025f33b067b2b8966 Mon Sep 17 00:00:00 2001 From: Sowmayjain Date: Mon, 4 Mar 2019 02:44:22 +0530 Subject: [PATCH] proxy test with events. --- contracts/v2/ProxyTest.sol | 3 +++ 1 file changed, 3 insertions(+) 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