Implement more validation and conversion

This commit is contained in:
2022-11-04 07:20:14 +00:00
parent d34ac39d68
commit 60979652d9
8 changed files with 294 additions and 158 deletions

View File

@@ -91,6 +91,7 @@ class Account(models.Model):
client = self.get_client()
if client:
supported_symbols = client.get_supported_assets()
log.debug(f"Supported symbols for {self.name}: {supported_symbols}")
self.supported_symbols = supported_symbols
super().save(*args, **kwargs)