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,13 +189,17 @@ func HandlerGetcash(w http.ResponseWriter, data string, uuid int) {
189 189
190 //2.2.5版本开启自动审核 190 //2.2.5版本开启自动审核
191 checkcoin := 2 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 logger.Info("HandlerGetcash autocheckcoin") 197 logger.Info("HandlerGetcash autocheckcoin")
194 if drawnum <= 150 { 198 if drawnum <= 150 {
195 //1.5挡位以下不需要审核 199 //1.5挡位以下不需要审核
196 checkcoin = 1 //临时关闭u 200 checkcoin = 1 //临时关闭u
197 } 201 }
198 - } 202 + }*/
199 203
200 gold, err := GetCashFromSDK(uuid, drawnum, rdata.Gameid, rdata.Channel, rdata.Openid, rdata.Nickname, rdata.Headurl, rdata.Ver, checkcoin) 204 gold, err := GetCashFromSDK(uuid, drawnum, rdata.Gameid, rdata.Channel, rdata.Openid, rdata.Nickname, rdata.Headurl, rdata.Ver, checkcoin)
201 if err != nil { 205 if err != nil {