Submitted by WatchPug
In ConcentratedLiquidityPosition.collect(), balances of token0 and token1 in bento will be used to pay the fees.
ConcentratedLiquidityPosition.sol#L103 L116
In the case of someone add an incentive with token0 or token1, the incentive in the balance of bento will be used to pay fees until the balance is completely consumed.
As a result, when a user calls claimReward(), the contract may not have enough balance to pay (it supposed to have it), cause the transaction to fail.
ConcentratedLiquidityPoolManager.sol#L78 L100
The same issue applies to reclaimIncentive() as well.
ConcentratedLiquidityPoolManager.sol L49 L62
Consider making adding token0 or token1 as incentives disallowed, or keep a record of total remaining incentive amounts for the incentive tokens and avoid consuming these revered balances when collect().
sarangparikh22 (Sushi) confirmed
