From 321b66a8615c273b3e3c77dbbf53e9e7e2e91e64 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Fri, 21 Aug 2020 03:54:16 +0530 Subject: [PATCH] Minor edits --- contracts/connectors/curve_gauge.sol | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/contracts/connectors/curve_gauge.sol b/contracts/connectors/curve_gauge.sol index 75fc9f2..7fe21ef 100644 --- a/contracts/connectors/curve_gauge.sol +++ b/contracts/connectors/curve_gauge.sol @@ -139,8 +139,8 @@ contract CurveGauge is CurveGaugeEvent { * @dev Withdraw LP Token and claim both CRV and Reward token. * @param gaugePoolName gauge pool name. * @param amt LP token amount. - * @param getId Get token amount at this ID from `InstaMemory` Contract. - * @param setId Set token amount at this ID in `InstaMemory` Contract. + * @param getId Get LP token amount at this ID from `InstaMemory` Contract. + * @param setId Set LP token amount at this ID in `InstaMemory` Contract. * @param setIdCrv Set CRV token reward amount at this ID in `InstaMemory` Contract. * @param setIdReward Set reward amount at this ID in `InstaMemory` Contract. */ @@ -234,7 +234,6 @@ contract CurveGauge is CurveGaugeEvent { emitLogClaimedReward(gaugePoolName, balances.crvRewardAmt, balances.rewardAmt, setId, setIdReward); } - } contract ConnectCurveGauge is CurveGauge {