drop minimum_date from get_ticker_history

This commit is contained in:
gcarq
2017-11-06 00:06:59 +01:00
parent 60e651cb4c
commit 810f2f9243
4 changed files with 9 additions and 17 deletions

View File

@@ -96,8 +96,8 @@ def get_ticker(pair: str) -> dict:
return _API.get_ticker(pair)
def get_ticker_history(pair: str, minimum_date: arrow.Arrow) -> List:
return _API.get_ticker_history(pair, minimum_date)
def get_ticker_history(pair: str) -> List:
return _API.get_ticker_history(pair)
def cancel_order(order_id: str) -> None: