This commit is contained in:
aozhiwei 2024-09-23 17:20:00 +08:00
parent 7511c91a77
commit 3f379b860a

View File

@ -126,7 +126,7 @@ func (this* vester) saveToDb(ds *f5.DataSet) bool {
whereKv,
[][]string{},
genInsertKv([][]string{
{"account_address", p.Account},
{"account_address", strings.ToLower(p.Account)},
{"deposit_amount", p.Amount},
}))
if err != nil {
@ -144,7 +144,7 @@ func (this* vester) saveToDb(ds *f5.DataSet) bool {
whereKv,
[][]string{},
genInsertKv([][]string{
{"account_address", p.Account},
{"account_address", strings.ToLower(p.Account)},
{"withdraw_clamied_amount", p.ClaimedAmount},
{"withdraw_balance", p.Balance},
}))