We should be changing bet_amounts instead of parsing a bet amount and doing

nothing with it :l
This commit is contained in:
jesopo 2018-10-17 08:40:23 +01:00
parent 95e98563d5
commit c22d5a348f

View file

@ -341,7 +341,7 @@ class Module(ModuleManager.BaseModule):
for i, bet_amount in enumerate(bet_amounts):
try:
bet_amount = self._parse_coins(bet_amount, DECIMAL_ZERO)
bet_amounts[i] = self._parse_coins(bet_amount, DECIMAL_ZERO)
except CoinParseException as e:
raise utils.EventError("%s: %s" % (event["user"].nickname,
str(e)))