mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-23 13:13:29 +00:00
Fix overflow on markettick value with some currencies
This commit is contained in:
@ -482,7 +482,7 @@ class MarketTick(models.Model):
|
||||
|
||||
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
||||
price = models.DecimalField(
|
||||
max_digits=10,
|
||||
max_digits=16,
|
||||
decimal_places=2,
|
||||
default=None,
|
||||
null=True,
|
||||
|
Reference in New Issue
Block a user