fix: 修复dryrun.sh中的Python语法错误

This commit is contained in:
zhangkun9038@dingtalk.com 2025-12-02 12:50:12 +08:00
parent a75a10074a
commit 94588ce5de

View File

@ -185,7 +185,7 @@ print(f"Updated exchange.pair_whitelist to: {pairs}")
# 写入临时配置文件
with open('$TEMP_CONFIG', 'w') as f:
json.dump(clean_config, f, indent=4)
json.dump(config, f, indent=4)
print(f"Modified config saved to: $TEMP_CONFIG")
EOF