Ken 2 dní pred
rodič
commit
4c3e6ba282

+ 1 - 1
app/Http/Controllers/admin/Bet.php

@@ -41,7 +41,7 @@ class Bet extends Controller
     // 模拟下注
     public function fake()
     {
-        BetService::randomVirtualBetting(1);
+        BetService::randomVirtualBetting(3);
         return $this->success();
     }
 

+ 1 - 1
app/Services/BetService.php

@@ -383,7 +383,7 @@ class BetService extends BaseService
         $maxPeople = min($maxPeople, 20);
         $num = rand(1, $maxPeople);
         for ($i = 0; $i < $num; $i++) {
-            static::fakeBet(2);
+            static::fakeBet(4);
         }
     }