File: src/rebalance/LamboRebalanceOnUniwap.sol
128:     function _getTokenBalances() internal view returns (uint256 wethBalance, uint256 vethBalance) {
129:         wethBalance = IERC20(weth).balanceOf(uniswapPool);         <<(1) this does not represent the active tick
130:         vethBalance = IERC20(veth).balanceOf(uniswapPool);
131:     }
132: 
133:     function _getTokenInOut() internal view returns (address tokenIn, address tokenOut, uint256 amountIn) {
134:         (uint256 wethBalance, uint256 vethBalance) = _getTokenBalances();
135:         uint256 targetBalance = (wethBalance + vethBalance) / 2;    <<(2) wrong formula
136:
137:         if (vethBalance > targetBalance) {
138:             amountIn = vethBalance - targetBalance;
139:             tokenIn = weth;
140:             tokenOut = veth;
141:         } else {
142:             amountIn = wethBalance - targetBalance;
143:             tokenIn = veth;
144:             tokenOut = weth;
145:         }
146: 
147:         require(amountIn > 0, "amountIn must be greater than zero");
148:     }
149: 
