fixed config dict mutation

This commit is contained in:
Nicolás Sánchez 2026-06-04 14:45:22 -03:00
parent 9141f4109e
commit ca817b6a13
2 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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