52390 sc high validateistoken blocks validators from claiming earned rewards from removed tokens
Description
Brief/Intro
Vulnerability Details
File: ValidatorFacet.sol
modifier _validateIsToken(
address token
) {
if (!PlumeStakingStorage.layout().isRewardToken[token]) {
revert TokenDoesNotExist(token);
}
_;
}Impact Details
Recommendation
Proof of Concept
References
Previous50887 sc insight arcotokenpurchase purchasemade event mislabels payment amount as pricepaid instead of unit priceNext51882 sc low unnecessary claiming restriction in raffle contract prevents winners from claiming prizes until all winners are drawn
Was this helpful?