(self, code, amount)
| 559 | }) |
| 560 | |
| 561 | def convert_from_real_amount(self, code, amount): |
| 562 | currency = self.currency(code) |
| 563 | precision = self.safe_string(currency, 'precision') |
| 564 | amountString = self.number_to_string(amount) |
| 565 | finalAmount = Precise.string_div(amountString, precision) |
| 566 | return self.parse_number(finalAmount) |
| 567 | |
| 568 | def convert_to_real_amount(self, code: Str, amount: Str): |
| 569 | if code is None: |
no test coverage detected