作者 karlet

feat:fix

@@ -72,13 +72,13 @@ class BinanceSpot @@ -72,13 +72,13 @@ class BinanceSpot
72 } 72 }
73 $data = json_encode([]); 73 $data = json_encode([]);
74 if (strtoupper($method) == 'POST') { 74 if (strtoupper($method) == 'POST') {
75 - $data = network\Curl::httpPost($url, $param); 75 + $data = Curl::httpPost($url, $param);
76 } 76 }
77 if (strtoupper($method) == 'GET') { 77 if (strtoupper($method) == 'GET') {
78 - $data = network\Curl::httpGet($url, $param); 78 + $data = Curl::httpGet($url, $param);
79 } 79 }
80 if (strtoupper($method) == 'DELETE') { 80 if (strtoupper($method) == 'DELETE') {
81 - $data = network\Curl::httpDelete($url, $param); 81 + $data = Curl::httpDelete($url, $param);
82 } 82 }
83 return json_decode($data, true); 83 return json_decode($data, true);
84 } 84 }