mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 02:12:01 +00:00
Support accountId as exchange secret
This commit is contained in:
parent
5c371133a0
commit
f5a92fcfc5
|
@ -18,6 +18,7 @@ def sanitize_config(config: Config, *, show_sensitive: bool = False) -> Config:
|
||||||
"exchange.secret",
|
"exchange.secret",
|
||||||
"exchange.password",
|
"exchange.password",
|
||||||
"exchange.uid",
|
"exchange.uid",
|
||||||
|
"exchange.accountId",
|
||||||
"exchange.walletAddress",
|
"exchange.walletAddress",
|
||||||
"exchange.privateKey",
|
"exchange.privateKey",
|
||||||
"telegram.token",
|
"telegram.token",
|
||||||
|
|
|
@ -342,6 +342,7 @@ class Exchange:
|
||||||
"secret": exchange_config.get("secret"),
|
"secret": exchange_config.get("secret"),
|
||||||
"password": exchange_config.get("password"),
|
"password": exchange_config.get("password"),
|
||||||
"uid": exchange_config.get("uid", ""),
|
"uid": exchange_config.get("uid", ""),
|
||||||
|
"accountId": exchange_config.get("accountId", ""),
|
||||||
# DEX attributes:
|
# DEX attributes:
|
||||||
"walletAddress": exchange_config.get("walletAddress"),
|
"walletAddress": exchange_config.get("walletAddress"),
|
||||||
"privateKey": exchange_config.get("privateKey"),
|
"privateKey": exchange_config.get("privateKey"),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user