Rename get_stoploss_order to fetch_stoploss_order (align with fetch_order)

This commit is contained in:
Matthias
2020-06-28 16:30:24 +02:00
parent 92c70fb903
commit cbcbb4bdb5
7 changed files with 29 additions and 29 deletions

View File

@@ -79,7 +79,7 @@ class Ftx(Exchange):
raise OperationalException(e) from e
@retrier
def get_stoploss_order(self, order_id: str, pair: str) -> Dict:
def fetch_stoploss_order(self, order_id: str, pair: str) -> Dict:
if self._config['dry_run']:
try:
order = self._dry_run_open_orders[order_id]