Commit 43b86d1d authored by ZhuChunYang's avatar ZhuChunYang

update

parent aa181e86
...@@ -129,8 +129,8 @@ class CoinController extends BaseController ...@@ -129,8 +129,8 @@ class CoinController extends BaseController
throw new Exception('8', '币种不存在'); throw new Exception('8', '币种不存在');
} }
$result = (array)$miner_fee->getAttributes(); $result = (array)$miner_fee->getAttributes();
$result['min'] = (float)$result['min']; $result['min'] = number_format($result['min'],6);
$result['max'] = (float)$result['max']; $result['max'] = number_format($result['max'],6);
return $result; return $result;
} }
......
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