Remove get_market_summaries

This commit is contained in:
enenn
2018-02-03 23:16:57 +01:00
parent a11c24b286
commit 508342e42b
4 changed files with 77 additions and 86 deletions

View File

@@ -171,18 +171,15 @@ def get_order(order_id: str) -> Dict:
return _API.get_order(order_id)
# TODO: reimplement, not part of ccxt
def get_pair_detail_url(pair: str) -> str:
return _API.get_pair_detail_url(pair)
return ""
def get_markets() -> List[dict]:
return _API.fetch_markets()
def get_market_summaries() -> List[Dict]:
return _API.public_get_marketsummaries()['result']
def get_name() -> str:
return _API.name