mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 11:51:19 +00:00
feat: add ccxt_sync_config to json schema
This commit is contained in:
@@ -1247,7 +1247,11 @@
|
|||||||
"type": "object"
|
"type": "object"
|
||||||
},
|
},
|
||||||
"ccxt_async_config": {
|
"ccxt_async_config": {
|
||||||
"description": "CCXT asynchronous configuration settings.",
|
"description": "CCXT asynchronous configuration settings.Usually ccxt_config should be used instead.",
|
||||||
|
"type": "object"
|
||||||
|
},
|
||||||
|
"ccxt_sync_config": {
|
||||||
|
"description": "CCXT synchronous configuration settings. Usually ccxt_config should be used instead.",
|
||||||
"type": "object"
|
"type": "object"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -913,7 +913,17 @@ CONF_SCHEMA = {
|
|||||||
},
|
},
|
||||||
"ccxt_config": {"description": "CCXT configuration settings.", "type": "object"},
|
"ccxt_config": {"description": "CCXT configuration settings.", "type": "object"},
|
||||||
"ccxt_async_config": {
|
"ccxt_async_config": {
|
||||||
"description": "CCXT asynchronous configuration settings.",
|
"description": (
|
||||||
|
"CCXT asynchronous configuration settings."
|
||||||
|
"Usually ccxt_config should be used instead."
|
||||||
|
),
|
||||||
|
"type": "object",
|
||||||
|
},
|
||||||
|
"ccxt_sync_config": {
|
||||||
|
"description": (
|
||||||
|
"CCXT synchronous configuration settings. "
|
||||||
|
"Usually ccxt_config should be used instead."
|
||||||
|
),
|
||||||
"type": "object",
|
"type": "object",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user