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); } /**