Allow paying users negative amounts on market resolve.
This commit is contained in:
parent
a8fd4c8014
commit
abd9be921f
|
@ -68,8 +68,7 @@ const updateUserBalance = (
|
||||||
}
|
}
|
||||||
|
|
||||||
export const payUser = (userId: string, payout: number, isDeposit = false) => {
|
export const payUser = (userId: string, payout: number, isDeposit = false) => {
|
||||||
if (!isFinite(payout) || payout <= 0)
|
if (!isFinite(payout)) throw new Error('Payout is not finite: ' + payout)
|
||||||
throw new Error('Payout is not positive: ' + payout)
|
|
||||||
|
|
||||||
return updateUserBalance(userId, payout, isDeposit)
|
return updateUserBalance(userId, payout, isDeposit)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user