Skip to content

Commit

Permalink
fixing 587 while im at it
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudia Richoux committed Aug 28, 2020
1 parent d06c397 commit 66b98da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slither/slithir/variables/constant.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, val, type=None, subdenomination=None):
else:
self._val = 0
else:
self._val = int(Decimal(base) * (10 ** expo))
self._val = int(Decimal(base) * Decimal(10 ** expo))
else:
self._val = int(Decimal(val))
elif type.type == 'bool':
Expand Down

0 comments on commit 66b98da

Please sign in to comment.