Submitted by cmichel, also found by pauliax
The ConcentratedLiquidityPoolManager.addIncentive function can add an incentive that already has a non-zero incentive.secondsClaimed.
Rewards will be wrong.
Add a check: require(incentive.secondsClaimed == 0, "!secondsClaimed").
sarangparikh22 (Sushi) confirmed
alcueca (judge) commented:
