This commit is contained in:
aozhiwei 2024-09-04 14:48:03 +08:00
parent f7c1f78f6c
commit bff6f00c5a
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ const (
CONTRACT_NAME_FounderTag = "FounderTag"
CONTRACT_NAME_NFTLock = "NFTLock"
CONTRACT_NAME_GameItemMall = "GameItemMall"
CONTRACT_NAME_RewardRouter = "rewardRouter"
CONTRACT_NAME_StakedEsCecRouter = "stakedEsCecRouter"
)
const (

View File

@ -24,7 +24,7 @@ type stackingCec struct {
func (this *stackingCec) init() {
mt.Table.Contract.Traverse(func (ele *mt.Contract) bool {
if ele.GetName() == jccommon.CONTRACT_NAME_RewardRouter {
if ele.GetName() == jccommon.CONTRACT_NAME_StakedEsCecRouter {
go this.process(ele.GetNetId(), ele.GetAddress())
}
return true