Description
OstiumPairsStorage::updateGroupCollateral() does not check for the pair's index existence, which means that it would update group with index 0 incorrectly.
Recommendation
Add if (!isPairIndexListed[_pairIndex]) revert PairNotListed(_pairIndex); to the function.
Status
Addressed in #ee024b2.