mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Prevent parameter reuse
This commit is contained in:
parent
4f4bfdac4d
commit
639987cbab
|
@ -197,11 +197,11 @@ class Okx(Exchange):
|
|||
return order_reg
|
||||
except ccxt.OrderNotFound:
|
||||
pass
|
||||
params1 = {'stop': True, 'ordType': 'conditional'}
|
||||
params2 = {'stop': True, 'ordType': 'conditional'}
|
||||
for method in (self._api.fetch_open_orders, self._api.fetch_closed_orders,
|
||||
self._api.fetch_canceled_orders):
|
||||
try:
|
||||
orders = method(pair, params=params1)
|
||||
orders = method(pair, params=params2)
|
||||
orders_f = [order for order in orders if order['id'] == order_id]
|
||||
if orders_f:
|
||||
order = orders_f[0]
|
||||
|
|
Loading…
Reference in New Issue
Block a user