From 6553b81b94c1363f232c2f6a53208a96e4b64ffb Mon Sep 17 00:00:00 2001 From: ZhouYongyou <128128010+zhouyongyou@users.noreply.github.com> Date: Sun, 2 Nov 2025 00:40:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20config.json.example=20=E7=BC=BA=E5=B0=91?= =?UTF-8?q?=20coin=5Fpool=5Fapi=5Furl=20=E5=92=8C=20oi=5Ftop=5Fapi=5Furl?= =?UTF-8?q?=20=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 问题:config.json.example 与 main.go 的 ConfigFile 结构不一致 - 影响:新用户复制 example 时会缺少必要的配置字段 - 修复:添加 coin_pool_api_url 和 oi_top_api_url(空字符串) 相关提交:517d0ca (admin_mode config) --- config.json.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.json.example b/config.json.example index ac9d5ac6..6b0a32e1 100644 --- a/config.json.example +++ b/config.json.example @@ -15,6 +15,8 @@ "ADAUSDT", "HYPEUSDT" ], + "coin_pool_api_url": "", + "oi_top_api_url": "", "api_server_port": 8080, "max_daily_loss": 10.0, "max_drawdown": 20.0,