From 6b9cb2c546e450ce6e3332137e5b63b65dc5f8d8 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Mon, 31 Aug 2020 23:46:37 +0530 Subject: [PATCH] Fixed withdraw event typo --- contracts/pools/erc20.sol | 2 +- contracts/pools/eth.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/pools/erc20.sol b/contracts/pools/erc20.sol index 30b4cbf..171cf59 100644 --- a/contracts/pools/erc20.sol +++ b/contracts/pools/erc20.sol @@ -191,7 +191,7 @@ contract PoolToken is ReentrancyGuard, DSMath, ERC20Pausable { baseToken.safeTransfer(to, _tknAmt); - emit LogWithdraw(msg.sender, tknAmt, _burnAmt, _feeAmt); + emit LogWithdraw(msg.sender, _tknAmt, _burnAmt, _feeAmt); } /** diff --git a/contracts/pools/eth.sol b/contracts/pools/eth.sol index 65ae81a..447db09 100644 --- a/contracts/pools/eth.sol +++ b/contracts/pools/eth.sol @@ -187,7 +187,7 @@ contract PoolToken is ReentrancyGuard, ERC20Pausable, DSMath { payable(to).transfer(_tknAmt); - emit LogWithdraw(msg.sender, tknAmt, _burnAmt, _feeAmt); + emit LogWithdraw(msg.sender, _tknAmt, _burnAmt, _feeAmt); } /**