mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Remove duplicate check
This commit is contained in:
parent
1d8fc97053
commit
1f79ca9539
|
@ -797,9 +797,6 @@ class Exchange:
|
|||
try:
|
||||
if self._trades_pagination == 'time':
|
||||
raise OperationalException(f"Wrong method called to get trades for {self.name}")
|
||||
i if not self.exchange_has("fetchTrades"):
|
||||
# TODO: Maybe don't completey stop the bot ... ?
|
||||
raise OperationalException("This exchange does not suport downloading Trades.")
|
||||
|
||||
trades: List[Dict] = []
|
||||
|
||||
|
@ -843,7 +840,8 @@ class Exchange:
|
|||
since: Optional[int] = None,
|
||||
until: Optional[int] = None) -> Tuple[str, List]:
|
||||
"""
|
||||
Asyncronously gets trade history using fetch_trades.
|
||||
Asyncronously gets trade history using fetch_trades,
|
||||
when the exchange uses time-based iteration
|
||||
:param pair: Pair to fetch trade data for
|
||||
:param since: Since as integer timestamp in milliseconds
|
||||
:param until: Until as integer timestamp in milliseconds
|
||||
|
@ -851,9 +849,6 @@ class Exchange:
|
|||
"""
|
||||
if self._trades_pagination != 'time':
|
||||
raise OperationalException(f"Wrong method called to get trades for {self.name}")
|
||||
if not self.exchange_has("fetchTrades"):
|
||||
# TODO: Maybe don't completey stop the bot ... ?
|
||||
raise OperationalException("This exchange does not suport downloading Trades.")
|
||||
try:
|
||||
|
||||
trades: List[Dict] = []
|
||||
|
|
Loading…
Reference in New Issue
Block a user