mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-14 04:03:55 +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:
|
with self._loop_lock:
|
||||||
task = asyncio.ensure_future(self._async_get_trade_history(
|
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]:
|
for sig in [signal.SIGINT, signal.SIGTERM]:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user