From 96ed4f62ddee3de26d999f287c97e787fa1c9df1 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Wed, 8 Jul 2020 22:44:51 +0530 Subject: [PATCH] Fixed typo --- contracts/connectors/uniswap.sol | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contracts/connectors/uniswap.sol b/contracts/connectors/uniswap.sol index 4400593..8c5eacd 100644 --- a/contracts/connectors/uniswap.sol +++ b/contracts/connectors/uniswap.sol @@ -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,