From 7407a6d47d40ff2d877a984c61bbb5705f4c770a Mon Sep 17 00:00:00 2001 From: Samyak Jain <34437877+KaymasJain@users.noreply.github.com> Date: Sat, 12 Jun 2021 14:04:13 +0530 Subject: [PATCH] updated the comment --- contracts/protocols/mainnet/GelatoUniV3pool.sol | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contracts/protocols/mainnet/GelatoUniV3pool.sol b/contracts/protocols/mainnet/GelatoUniV3pool.sol index 1b97b48..0b30823 100644 --- a/contracts/protocols/mainnet/GelatoUniV3pool.sol +++ b/contracts/protocols/mainnet/GelatoUniV3pool.sol @@ -147,11 +147,11 @@ contract Helpers is DSMath { uint stakedBal; // user's pool token bal in staking contract uint poolBal; // ideal pool token in user's DSA uint totalBal; // stakedBal + poolTknBal - uint token0Decimals; - uint token1Decimals; - int24 currentTick; - int24 lowerTick; - int24 upperTick; + uint token0Decimals; // token0 decimals + uint token1Decimals; // token1 decimals + int24 currentTick; // Current price of 1 token w.r.t to other + int24 lowerTick; // Price of 1 token w.r.t to other at lower tick + int24 upperTick; // Price of 1 token w.r.t to other at upper tick } }