Bypass potential loss checking code if potential loss is 0

This commit is contained in:
moneromooo 2015-01-20 19:52:10 +00:00
parent 689469f298
commit 590b9ef9c5

View file

@ -29,6 +29,7 @@ def IsBetAmountValid(amount,minbet,maxbet,potential_loss,max_loss,max_loss_ratio
return False, "Max bet is %s" % AmountToString(maxbet * coinspecs.atomic_units)
if amount < minbet:
return False, "Min bet is %s" % AmountToString(minbet * coinspecs.atomic_units)
if potential_loss > 0:
if potential_loss > max_loss:
return False, "Max potential loss is %s" % AmountToString(max_loss * coinspecs.atomic_units)
try: