Commit f4d83f30 authored by shajiaiming's avatar shajiaiming

fix

parent 39d356a9
......@@ -130,7 +130,7 @@ class CoinIssueCoin extends CommonActiveRecord
}
$issue_record = CoinIssueCoin::find()->where(['platform_id' => $this->platform_id, 'symbol' => $this->symbol, 'status' => CoinIssueCoin::STATUS_SUCCESS])->sum('total');
$issue_record = empty($issue_record) ? 0 : $issue_record;
if ($issue_record + $this->$attribute >= 20) {
if ($issue_record + $this->$attribute > 20) {
$this->addError($attribute, '最大发行量20亿,目前已发行' . $issue_record . '亿');
return false;
}
......
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