From 2835ad200b76e9cf2921105fabfcd047a7baa37d Mon Sep 17 00:00:00 2001 From: zhongqiang <15375399426> Date: Fri, 27 Jun 2025 17:28:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=A4=E6=98=93=E6=89=80=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jtt_tool/jtt_client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jtt_tool/jtt_client.go b/jtt_tool/jtt_client.go index 563b943..5bf8dae 100644 --- a/jtt_tool/jtt_client.go +++ b/jtt_tool/jtt_client.go @@ -61,8 +61,8 @@ func (j *JttClient) FindUserForTokenMessage(address string) (res *FindUserForTok return } - if res == nil { - err = fmt.Errorf("查询交易所数据失败: %w, 地址:%s", err, address) + if res == nil || res.Code != 200 { + err = fmt.Errorf("查询交易所数据失败: %w, res: %+v , 地址:%s", err, res, address) return }