mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-18 12:11:35 +00:00
Fix overflow by IRT on exchange_rate DecimalField
This commit is contained in:
parent
473a38faf9
commit
26a4d3860d
@ -35,7 +35,7 @@ class Currency(models.Model):
|
||||
choices=currency_choices, null=False, unique=True
|
||||
)
|
||||
exchange_rate = models.DecimalField(
|
||||
max_digits=14,
|
||||
max_digits=18,
|
||||
decimal_places=4,
|
||||
default=None,
|
||||
null=True,
|
||||
|
Loading…
Reference in New Issue
Block a user