mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Update function due to merge of #1926
This commit is contained in:
parent
4ef309bc6c
commit
9035e0b695
|
@ -3,7 +3,7 @@ from argparse import Namespace
|
|||
from typing import Any, Dict
|
||||
|
||||
from freqtrade.configuration import Configuration
|
||||
from freqtrade.exchange import supported_exchanges
|
||||
from freqtrade.exchange import available_exchanges
|
||||
from freqtrade.state import RunMode
|
||||
|
||||
|
||||
|
@ -34,7 +34,7 @@ def start_list_exchanges(args: Namespace) -> None:
|
|||
"""
|
||||
|
||||
if args.print_one_column:
|
||||
print('\n'.join(supported_exchanges()))
|
||||
print('\n'.join(available_exchanges()))
|
||||
else:
|
||||
print(f"Exchanges supported by ccxt and available for Freqtrade: "
|
||||
f"{', '.join(supported_exchanges())}")
|
||||
f"{', '.join(available_exchanges())}")
|
||||
|
|
Loading…
Reference in New Issue
Block a user