Commit 6641b1bd authored by shajiaiming's avatar shajiaiming

Merge branch 'master' into feature/airdrop

parents 9529ea23 16a40b9a
......@@ -42,6 +42,9 @@ class Bitnasdaq extends Exchange implements ExchangeInterface
if (is_array($res) && isset($res['obj'])) {
$data = $res['obj'];
foreach ($data as $key => $item) {
if(strpos(strtoupper($key),'_CNYT') !== false){
continue;
}
$low = isset($item['minPrice']) ? $item['minPrice'] : 0;
$high = isset($item['maxPrice']) ? $item['maxPrice'] : 0;
$last = isset($item['currentExchangPrice']) ? $item['currentExchangPrice'] : 0;
......
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