Rename config.json.example

it's really the config dedicated to bittrex,
so the name should reflect this in beeing config_bittrex.json.example
This commit is contained in:
Matthias
2021-01-22 19:18:21 +01:00
parent 371b374ea6
commit 31e0b09643
10 changed files with 50 additions and 51 deletions

View File

@@ -363,7 +363,7 @@ def test_start_plot_dataframe(mocker):
aup = mocker.patch("freqtrade.plot.plotting.load_and_plot_trades", MagicMock())
args = [
"plot-dataframe",
"--config", "config.json.example",
"--config", "config_bittrex.json.example",
"--pairs", "ETH/BTC"
]
start_plot_dataframe(get_args(args))
@@ -407,7 +407,7 @@ def test_start_plot_profit(mocker):
aup = mocker.patch("freqtrade.plot.plotting.plot_profit", MagicMock())
args = [
"plot-profit",
"--config", "config.json.example",
"--config", "config_bittrex.json.example",
"--pairs", "ETH/BTC"
]
start_plot_profit(get_args(args))