Update freqtrade/commands/build_config_commands.py

This commit is contained in:
Matthias 2021-08-30 20:00:52 +02:00 committed by GitHub
parent 20878290a0
commit 2a0c95a2e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ def ask_user_config() -> Dict[str, Any]:
{
"type": "text",
"name": "stake_amount",
"message": f"Please insert your stake amount (Integer or '{UNLIMITED_STAKE_AMOUNT}'):",
"message": f"Please insert your stake amount (Number or '{UNLIMITED_STAKE_AMOUNT}'):",
"default": "0.01",
"validate": lambda val: val == UNLIMITED_STAKE_AMOUNT or validate_is_float(val),
"filter": lambda val: '"' + UNLIMITED_STAKE_AMOUNT + '"'