Fix dpm MULTI resolution payouts bug

This commit is contained in:
Ian Philips 2022-09-26 15:57:21 -04:00
parent cc3b44891b
commit a10e4c115e

View File

@ -168,7 +168,7 @@ export const getPayoutsMultiOutcome = (
const winnings = (shares / sharesByOutcome[outcome]) * prob * poolTotal
const profit = winnings - amount
const payout = amount + (1 - DPM_FEES) * Math.max(0, profit)
const payout = amount + (1 - DPM_FEES) * profit
return { userId, profit, payout }
})