Skip to content

Commit

Permalink
Align spelling of "cancelling"
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Dec 25, 2023
1 parent 1e5d353 commit c6967b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freqtrade/freqtradebot.py
Expand Up @@ -904,7 +904,7 @@ def cancel_stoploss_on_exchange(self, trade: Trade) -> Trade:
# First cancelling stoploss on exchange ...
if trade.stoploss_order_id:
try:
logger.info(f"Canceling stoploss on exchange for {trade}")
logger.info(f"Cancelling stoploss on exchange for {trade}")
co = self.exchange.cancel_stoploss_order_with_result(
trade.stoploss_order_id, trade.pair, trade.amount)
self.update_trade_state(trade, trade.stoploss_order_id, co, stoploss_order=True)
Expand Down

0 comments on commit c6967b1

Please sign in to comment.