mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Pass on missed argument stop_on_from_id
This commit is contained in:
parent
e8714d52cd
commit
e60b997fd0
|
@ -2592,7 +2592,11 @@ class Exchange:
|
|||
|
||||
with self._loop_lock:
|
||||
task = asyncio.ensure_future(self._async_get_trade_history(
|
||||
pair=pair, since=since, until=until, from_id=from_id))
|
||||
pair=pair,
|
||||
since=since,
|
||||
until=until,
|
||||
from_id=from_id,
|
||||
stop_on_from_id=stop_on_from_id))
|
||||
|
||||
for sig in [signal.SIGINT, signal.SIGTERM]:
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue
Block a user