Commit 76114873 authored by shajiaiming's avatar shajiaiming

临时添加BOSS币值

parent 21bd64ae
...@@ -55,6 +55,16 @@ class ExchangeBusiness ...@@ -55,6 +55,16 @@ class ExchangeBusiness
$quotation['last'] = (float)sprintf("%0.4f", $quotation['rmb']/$rate); $quotation['last'] = (float)sprintf("%0.4f", $quotation['rmb']/$rate);
return $quotation; return $quotation;
} }
if(strtoupper($tag) == 'BOSS'){
$quotation = [
'low' => 2000,
'high' => 2000,
'last' => 2000,
'rmb' => 2000,
];
return $quotation;
}
if(in_array($tag,$coin_quotation_disable_items)){ if(in_array($tag,$coin_quotation_disable_items)){
return false; 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