From 05ca383b823b81973e7612859cbea62ddee04740 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 23 Sep 2024 17:44:27 +0800 Subject: [PATCH] 1 --- server/light_backtask/service/vip.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/server/light_backtask/service/vip.go b/server/light_backtask/service/vip.go index bf4282ab..e0a6c041 100644 --- a/server/light_backtask/service/vip.go +++ b/server/light_backtask/service/vip.go @@ -77,5 +77,17 @@ func (this *vip) AddEx(accountAddress string, val string, idx int64, valField st func (this *vip) RecalcEsCecConvert(accountAddress string) error { accountAddress = strings.ToLower(accountAddress) + err , ds := f5.GetGoStyleDb().NewOrmSelect( + constant.BCEVENT_DB, + "t_vester_deposit_withdraw", + [][]string { + {"address", accountAddress}, + }) + if err != nil { + return err + } + for ds.Next() { + + } return nil }