diff --git a/src/domain/Sync.ts b/src/domain/Sync.ts index d203e72..2f03978 100644 --- a/src/domain/Sync.ts +++ b/src/domain/Sync.ts @@ -320,7 +320,7 @@ class LegacySyncDomain { const amount = row.amount; if (row.prizetypeid === "15") { placementPrizeSet.prizes.push({ amountInCents: amount * 100, type: "USD" }); - totalPrizesInCents += amount; + totalPrizesInCents += amount * 100; } else { numberOfCheckpointPrizes += row.numberofsubmissions; if (row.place === 1) {