mirror of
https://github.com/Instadapp/dsa-connectors-old.git
synced 2024-07-29 22:47:46 +00:00
Fixed typo
This commit is contained in:
parent
e9d74b2ba1
commit
96ed4f62dd
|
@ -366,22 +366,22 @@ contract UniswapLiquidity is LiquidityHelpers {
|
|||
* @dev Withdraw Liquidity.
|
||||
* @param tokenA tokenA address.(For ETH: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
|
||||
* @param tokenB tokenB address.(For ETH: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
|
||||
* @param uinAmt uni token amount.
|
||||
* @param unitAmtA unit amount of amtA/uinAmt with slippage.
|
||||
* @param unitAmtB unit amount of amtB/uinAmt with slippage.
|
||||
* @param uniAmt uni token amount.
|
||||
* @param unitAmtA unit amount of amtA/uniAmt with slippage.
|
||||
* @param unitAmtB unit amount of amtB/uniAmt with slippage.
|
||||
* @param getId Get token amount at this ID from `InstaMemory` Contract.
|
||||
* @param setIds Set token amounts at this IDs in `InstaMemory` Contract.
|
||||
*/
|
||||
function withdraw(
|
||||
address tokenA,
|
||||
address tokenB,
|
||||
uint uinAmt,
|
||||
uint uniAmt,
|
||||
uint unitAmtA,
|
||||
uint unitAmtB,
|
||||
uint getId,
|
||||
uint[] calldata setIds
|
||||
) external payable {
|
||||
uint _amt = getUint(getId, uinAmt);
|
||||
uint _amt = getUint(getId, uniAmt);
|
||||
|
||||
(uint _amtA, uint _amtB, uint _uniAmt) = _removeLiquidity(
|
||||
tokenA,
|
||||
|
|
Loading…
Reference in New Issue
Block a user