π«Cancel a Raffle
Cancellation Rules
Half of Tickets Calculation
half_of_tickets = (spots - (spots % 2)) / 2
// The spots is the total amount of tickets available at creationLast updated
half_of_tickets = (spots - (spots % 2)) / 2
// The spots is the total amount of tickets available at creationLast updated