Commit 02288a225a7f25f3ba2b59c5b2f29e764d3b4621

Authored by 陆恒
1 parent 7a7bf6c2
Exists in master

提交自动审核

Showing 1 changed file with 6 additions and 2 deletions   Show diff stats
src/HttpServer/logic/logic.go
... ... @@ -189,13 +189,17 @@ func HandlerGetcash(w http.ResponseWriter, data string, uuid int) {
189 189  
190 190 //2.2.5版本开启自动审核
191 191 checkcoin := 2
192   - if rdata.Ver == "2.2.5" || rdata.Ver == "2.2.6" {
  192 + if drawnum <= 150 {
  193 + //1.5挡位以下不需要审核
  194 + checkcoin = 1 //临时关闭u
  195 + }
  196 + /*if rdata.Ver == "2.2.5" || rdata.Ver == "2.2.6" {
193 197 logger.Info("HandlerGetcash autocheckcoin")
194 198 if drawnum <= 150 {
195 199 //1.5挡位以下不需要审核
196 200 checkcoin = 1 //临时关闭u
197 201 }
198   - }
  202 + }*/
199 203  
200 204 gold, err := GetCashFromSDK(uuid, drawnum, rdata.Gameid, rdata.Channel, rdata.Openid, rdata.Nickname, rdata.Headurl, rdata.Ver, checkcoin)
201 205 if err != nil {
... ...