Update proxy documentation to correspond to new ccxt mode

This commit is contained in:
Matthias
2023-07-09 13:52:46 +02:00
parent a598b8554d
commit 4c6eee8dfe
2 changed files with 4 additions and 10 deletions

View File

@@ -293,11 +293,7 @@ def set_test_proxy(config: Config, use_proxy: bool) -> Config:
if use_proxy and (proxy := os.environ.get('CI_WEB_PROXY')):
config1 = deepcopy(config)
config1['exchange']['ccxt_config'] = {
"aiohttp_proxy": proxy,
'proxies': {
'https': proxy,
'http': proxy,
}
"httpsProxy": proxy,
}
return config1