We should be changing bet_amounts
instead of parsing a bet amount and doing
nothing with it :l
This commit is contained in:
parent
95e98563d5
commit
c22d5a348f
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
|
|
||||||
for i, bet_amount in enumerate(bet_amounts):
|
for i, bet_amount in enumerate(bet_amounts):
|
||||||
try:
|
try:
|
||||||
bet_amount = self._parse_coins(bet_amount, DECIMAL_ZERO)
|
bet_amounts[i] = self._parse_coins(bet_amount, DECIMAL_ZERO)
|
||||||
except CoinParseException as e:
|
except CoinParseException as e:
|
||||||
raise utils.EventError("%s: %s" % (event["user"].nickname,
|
raise utils.EventError("%s: %s" % (event["user"].nickname,
|
||||||
str(e)))
|
str(e)))
|
||||||
|
|
Loading…
Reference in a new issue