This commit is contained in:
aozhiwei 2024-07-29 11:57:28 +08:00
parent b03cd8a4ac
commit 3abfe8e47e

View File

@ -181,7 +181,7 @@ func NftUpdateLock(netId int32, contractAddress string, tokenId string,
return result
}
func RepiarHeroQuality() error {
func RepairAllHeroNftQuality() error {
var resultErr error
nftDatas := []*jccommon.NftIdentityAndExtData{}
{
@ -213,6 +213,7 @@ func RepiarHeroQuality() error {
cb)
}
}
f5.GetSysLog().Info("nftutils.RepairAllHeroNftQuality start")
procBatchFunc := func(batch []*jccommon.NftIdentityAndExtData) {
if len(batch) <= 0 {
return
@ -269,6 +270,7 @@ func RepiarHeroQuality() error {
procBatchFunc(batch)
}
}
f5.GetSysLog().Info("nftutils.RepairAllHeroNftQuality end err:%s", resultErr)
return resultErr
}