DOn't update open orders in dry-run mode

This commit is contained in:
Matthias
2021-01-06 09:57:36 +01:00
parent c010cdf894
commit 91f8667881
2 changed files with 10 additions and 0 deletions

View File

@@ -4313,6 +4313,11 @@ def test_update_open_orders(mocker, default_conf, fee, caplog):
create_mock_trades(fee)
freqtrade.update_open_orders()
assert not log_has_re(r"Error updating Order .*", caplog)
freqtrade.config['dry_run'] = False
freqtrade.update_open_orders()
assert log_has_re(r"Error updating Order .*", caplog)
caplog.clear()