From 511023ee1080b5d295cfd4611e7296c86bc8028f Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 9 Jul 2023 13:47:57 +0200 Subject: [PATCH] Fix typo in comment --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 42ac85fdb..562cdc2e0 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -231,7 +231,7 @@ class FreqtradeBot(LoggingMixin): self.manage_open_orders() # Protect from collisions with force_exit. - # Without this, freqtrade my try to recreate stoploss_on_exchange orders + # Without this, freqtrade may try to recreate stoploss_on_exchange orders # while exiting is in process, since telegram messages arrive in an different thread. with self._exit_lock: trades = Trade.get_open_trades()