fix coin order

This commit is contained in:
lwl0608 2024-04-29 16:24:59 +08:00
parent f575f381e6
commit f12a1ad2a2
1 changed files with 7 additions and 0 deletions

View File

@ -802,6 +802,13 @@ func (v *Vas) OneStepUnlockContact(ctx *gin.Context, req *vasproto.OneStepUnlock
} }
} }
} }
// 是否达到铁粉解锁条件
_err := v.UnlockZoneIronfanshipReachConsume(ctx, tx, coinOrder.GetMid(), 0, coinOrder.GetUid())
if _err != nil {
logger.Error("UnlockZoneIronfanshipReachConsume fail, coinOrder: %v, err: %v", util.ToJson(coinOrder), _err)
return
}
return return
} }