Improve log message wording for rejected stake amounts

closes #6064
This commit is contained in:
Matthias 2021-12-13 19:29:07 +01:00
parent 1d0af074ac
commit 793d090561
1 changed files with 2 additions and 2 deletions

View File

@ -260,8 +260,8 @@ class Wallets:
if self._log: if self._log:
logger.info( logger.info(
f"Adjusted stake amount for pair {pair} is more than 30% bigger than " f"Adjusted stake amount for pair {pair} is more than 30% bigger than "
f"the desired stake ({stake_amount} * 1.3 > {max_stake_amount}), " f"the desired stake amount of ({stake_amount:.8f} * 1.3 = "
f"ignoring trade." f"{stake_amount * 1.3:.8f}) < {min_stake_amount}), ignoring trade."
) )
return 0 return 0
stake_amount = min_stake_amount stake_amount = min_stake_amount