Commit 59adb7c3 authored by shajiaiming's avatar shajiaiming

fix

parent b627fbda
...@@ -348,9 +348,13 @@ class IssueChainTransferController extends Controller ...@@ -348,9 +348,13 @@ class IssueChainTransferController extends Controller
$model->name = $params['symbol']; $model->name = $params['symbol'];
$model->sid = $params['name']; $model->sid = $params['name'];
$model->platform = $params['platform']; $model->platform = $params['platform'];
$model->publish_count = $params['total'] * 1e8;
$model->chain = 'BTY'; $model->chain = 'BTY';
$model->treaty = 1; $model->treaty = 1;
$model->save(); $model->save();
} else {
$model_coin->publish_count = $model_coin->publish_count + $params['total'] * 1e8;
$model_coin->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