Commit 83923372 authored by shajiaiming's avatar shajiaiming

Merge branch 'feature/airdrop' into 'master'

fix See merge request !333
parents f1ad9b14 f32fa687
...@@ -170,7 +170,7 @@ class AirDropController extends Controller ...@@ -170,7 +170,7 @@ class AirDropController extends Controller
if (0 == $result['code']) { if (0 == $result['code']) {
$balance = $result['result'][0]['balance'] ?? 0; $balance = $result['result'][0]['balance'] ?? 0;
$frozen = $result['result'][0]['frozen'] ?? 0; $frozen = $result['result'][0]['frozen'] ?? 0;
if (($balance + $frozen) / 1e8 > 3000) { if (($balance + $frozen) / 1e8 >= 3000) {
$val->reach = AirDropApplyRecord::REACH_YES; $val->reach = AirDropApplyRecord::REACH_YES;
$val->save(); $val->save();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment