(self, path, api='public', method='GET', params={}, headers=None, body=None, config={})
| 2046 | return None |
| 2047 | |
| 2048 | def request(self, path, api='public', method='GET', params={}, headers=None, body=None, config={}): |
| 2049 | response = self.fetch2(path, api, method, params, headers, body, config) |
| 2050 | if not isinstance(response, str): |
| 2051 | if 'message' in response: |
| 2052 | raise ExchangeError(self.id + ' ' + self.json(response)) |
| 2053 | return response |
nothing calls this directly
no test coverage detected