This commit is contained in:
aozhiwei 2024-09-23 17:44:27 +08:00
parent 3f379b860a
commit 05ca383b82

View File

@ -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
}