(self, reload=False, params={})
| 343 | }) |
| 344 | |
| 345 | def load_markets(self, reload=False, params={}): |
| 346 | markets = super(extended, self).load_markets(reload, params) |
| 347 | currenciesByNumericId = self.safe_dict(self.options, 'currenciesByNumericId') |
| 348 | if (currenciesByNumericId is None) or reload: |
| 349 | self.options['currenciesByNumericId'] = self.index_by_stringified_numeric_id(self.currencies) |
| 350 | return markets |
| 351 | |
| 352 | def index_by_stringified_numeric_id(self, input): |
| 353 | result = {} |
no test coverage detected