fixed config dict mutation
This commit is contained in:
parent
9141f4109e
commit
ca817b6a13
|
|
@ -1,7 +1,9 @@
|
||||||
2026.06.04:
|
2026.06.04:
|
||||||
. Proper tp_mode 2 fix
|
. Proper tp_mode 2 fix
|
||||||
. Minor fixes to string handling.
|
. Minor fixes to string handling
|
||||||
. Fix misplaced lock
|
. Fixed misplaced lock
|
||||||
|
. Fixed config dict mutation
|
||||||
|
|
||||||
|
|
||||||
2026.06.03:
|
2026.06.03:
|
||||||
. Fixed tp mode 2 non-functional
|
. Fixed tp mode 2 non-functional
|
||||||
|
|
|
||||||
2
main.py
2
main.py
|
|
@ -2694,7 +2694,7 @@ if __name__=="__main__":
|
||||||
"paused_traders": [],
|
"paused_traders": [],
|
||||||
"version": version,
|
"version": version,
|
||||||
"ccxt_version": f"{ccxt.__version__}",
|
"ccxt_version": f"{ccxt.__version__}",
|
||||||
"config": broker.get_config()
|
"config": broker.get_config().copy()
|
||||||
}
|
}
|
||||||
|
|
||||||
#Remove some keys that should not be public
|
#Remove some keys that should not be public
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue