52948 sc low jackpot reward rejected at exact threshold
Description
if (probability < jackpotThreshold) {
return ("Jackpot", jackpotPrizes[weekNumber]);
} else if (probability <= rewardProbabilities.plumeTokenThreshold) {
uint256 plumeAmount = plumeAmounts[probability % 3];
return ("Plume Token", plumeAmount);
} else if (probability <= rewardProbabilities.raffleTicketThreshold) {
return ("Raffle Ticket", baseRaffleMultiplier * streakForReward);
} else if (probability <= rewardProbabilities.ppThreshold) {
return ("PP", PP_PerSpin);
}References
Proof of Concept
Previous52794 sc low remainingforsale not updated after withdrawunsoldarctokens will cause following buy revertNext50735 sc high some yield tokens will be stuck in contract due to incorrect lastprocessedindex calculation
Was this helpful?