mirror of
https://github.com/Instadapp/yield-contract.git
synced 2024-07-29 21:47:29 +00:00
Fixed withdraw event typo
This commit is contained in:
parent
90b28b40b0
commit
e11f9553c7
|
@ -191,7 +191,7 @@ contract PoolToken is ReentrancyGuard, DSMath, ERC20Pausable {
|
||||||
|
|
||||||
baseToken.safeTransfer(to, _tknAmt);
|
baseToken.safeTransfer(to, _tknAmt);
|
||||||
|
|
||||||
emit LogWithdraw(msg.sender, tknAmt, _burnAmt, _feeAmt);
|
emit LogWithdraw(msg.sender, _tknAmt, _burnAmt, _feeAmt);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -187,7 +187,7 @@ contract PoolETH is ReentrancyGuard, ERC20Pausable, DSMath {
|
||||||
|
|
||||||
payable(to).transfer(_tknAmt);
|
payable(to).transfer(_tknAmt);
|
||||||
|
|
||||||
emit LogWithdraw(msg.sender, tknAmt, _burnAmt, _feeAmt);
|
emit LogWithdraw(msg.sender, _tknAmt, _burnAmt, _feeAmt);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user