Increase cache for rate limit to avoid delays

Helps when calling /status or /status table frequently on slowish
exchanges
This commit is contained in:
Matthias
2020-05-03 20:44:18 +02:00
parent 0f50449196
commit b38f9ed5e7
2 changed files with 7 additions and 3 deletions

View File

@@ -304,7 +304,8 @@ def default_conf(testdatadir):
"user_data_dir": Path("user_data"),
"verbosity": 3,
"strategy_path": str(Path(__file__).parent / "strategy" / "strats"),
"strategy": "DefaultStrategy"
"strategy": "DefaultStrategy",
"internals": {},
}
return configuration