(self, key, mapping={})
| 5817 | return self.safe_value(fees, code) |
| 5818 | |
| 5819 | def get_supported_mapping(self, key, mapping={}): |
| 5820 | if key in mapping: |
| 5821 | return mapping[key] |
| 5822 | else: |
| 5823 | raise NotSupported(self.id + ' ' + key + ' does not have a value in mapping') |
| 5824 | |
| 5825 | def fetch_cross_borrow_rate(self, code: str, params={}): |
| 5826 | self.load_markets() |
no test coverage detected