From 8f4af52d780a2b4122734d0cb17256c1526ccbc9 Mon Sep 17 00:00:00 2001 From: Eugenio Date: Fri, 21 May 2021 23:10:58 -0300 Subject: [PATCH] update error message Change a misspelling in "liquidity" --- zaps/beefyUniswapZap.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaps/beefyUniswapZap.sol b/zaps/beefyUniswapZap.sol index 64ed3e3..8ba24f3 100644 --- a/zaps/beefyUniswapZap.sol +++ b/zaps/beefyUniswapZap.sol @@ -130,7 +130,7 @@ contract BeefyUniV2Zap { require(reserveA > minimumAmount && reserveB > minimumAmount, 'Beefy: Liquidity pair reserves too low'); bool isInputA = pair.token0() == tokenIn; - require(isInputA || pair.token1() == tokenIn, 'Beefy: Input token not present in liqudity pair'); + require(isInputA || pair.token1() == tokenIn, 'Beefy: Input token not present in liquidity pair'); address[] memory path = new address[](2); path[0] = tokenIn;