|
|
@@ -380,6 +380,7 @@ class BetService extends BaseService
|
|
|
if ($gameplayRuleInfo) {
|
|
|
$amount = rand($betMini, $betMax);
|
|
|
$amount = floor($amount / 10) * 10;
|
|
|
+ $input = $gameplayRuleInfo['keywords'] . $amount;
|
|
|
$amount = number_format($amount,2);
|
|
|
$item = [];
|
|
|
$item['keywords'] = $gameplayRuleInfo['keywords'];
|
|
|
@@ -388,7 +389,7 @@ class BetService extends BaseService
|
|
|
$item['first_name'] = self::generateRandomString(6);
|
|
|
$item['member_id'] = self::generateRandomNumber(10);
|
|
|
$item['profit'] = 0;
|
|
|
- $input = $item['keywords'] . $item['amount'];
|
|
|
+ // $input = $item['keywords'] . $item['amount'];
|
|
|
|
|
|
$fake_bet_list[] = $item;
|
|
|
|