mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
chore: Fix missing space in log message
This commit is contained in:
@@ -579,7 +579,7 @@ class FreqtradeBot(LoggingMixin):
|
|||||||
logger.warning(
|
logger.warning(
|
||||||
f"{trade} has a total of {trade.amount} {trade.base_currency}, "
|
f"{trade} has a total of {trade.amount} {trade.base_currency}, "
|
||||||
f"but the Wallet shows a total of {total} {trade.base_currency}. "
|
f"but the Wallet shows a total of {total} {trade.base_currency}. "
|
||||||
f"Adjusting trade amount to {total}."
|
f"Adjusting trade amount to {total}. "
|
||||||
"This may however lead to further issues."
|
"This may however lead to further issues."
|
||||||
)
|
)
|
||||||
trade.amount = total
|
trade.amount = total
|
||||||
@@ -587,7 +587,7 @@ class FreqtradeBot(LoggingMixin):
|
|||||||
logger.warning(
|
logger.warning(
|
||||||
f"{trade} has a total of {trade.amount} {trade.base_currency}, "
|
f"{trade} has a total of {trade.amount} {trade.base_currency}, "
|
||||||
f"but the Wallet shows a total of {total} {trade.base_currency}. "
|
f"but the Wallet shows a total of {total} {trade.base_currency}. "
|
||||||
"Refusing to adjust as the difference is too large."
|
"Refusing to adjust as the difference is too large. "
|
||||||
"This may however lead to further issues."
|
"This may however lead to further issues."
|
||||||
)
|
)
|
||||||
if prev_trade_amount != trade.amount:
|
if prev_trade_amount != trade.amount:
|
||||||
|
|||||||
Reference in New Issue
Block a user