Compare commits

..

No commits in common. "a20383ff3b4da3cf465d50057387973a0f25b12f" and "dde83e46a6b501cb26d07d550fc2a405b2d3ccf9" have entirely different histories.

1 changed files with 2 additions and 7 deletions

View File

@ -2,14 +2,10 @@ package webapi
import ( import (
"errors" "errors"
"time"
"mongo.games.com/goserver/core/logger"
"mongo.games.com/game/model"
"mongo.games.com/game/mq"
"mongo.games.com/game/proto" "mongo.games.com/game/proto"
"mongo.games.com/game/protocol/webapi" "mongo.games.com/game/protocol/webapi"
"mongo.games.com/goserver/core/logger"
"time"
) )
type PlayerStatement struct { type PlayerStatement struct {
@ -145,7 +141,6 @@ func API_CreateOrder(appId, orderId string, configid, SnId, shopId int32, platfo
logger.Logger.Error("API_CreateOrder Unmarshal err:", err) logger.Logger.Error("API_CreateOrder Unmarshal err:", err)
return nil return nil
} }
mq.Write(model.GenerateActivityLog(SnId, platform, buyType, 0))
return ret return ret
} }