(self, params={})
| 496 | }) |
| 497 | |
| 498 | def get_account(self, params={}): |
| 499 | # get current or provided bitmax sub-account |
| 500 | account = self.safe_value(params, 'account', self.options['account']) |
| 501 | lowercaseAccount = account.lower() |
| 502 | return self.capitalize(lowercaseAccount) |
| 503 | |
| 504 | def fetch_currencies(self, params={}) -> Currencies: |
| 505 | """ |
nothing calls this directly
no test coverage detected