From 26ff05bb84ccdf983c85aa381e4996062fbc08c9 Mon Sep 17 00:00:00 2001 From: yangduo Date: Tue, 15 Oct 2024 17:57:07 +0800 Subject: [PATCH] fix --- server/marketserver/api/v1/vip/vip.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/marketserver/api/v1/vip/vip.go b/server/marketserver/api/v1/vip/vip.go index b5e7cf14..4e0de00f 100644 --- a/server/marketserver/api/v1/vip/vip.go +++ b/server/marketserver/api/v1/vip/vip.go @@ -149,7 +149,7 @@ func (this *VIPApi) Bind(c *gin.Context) { } func (this *VIPApi) Details(c *gin.Context) { - accountAddress := c.GetString("account_address") + accountAddress := strings.ToLower(c.GetString("account_address")) if accountAddress == "" { f5.RspErr(c, 1, "bad request") return