From 42ee2d22eaf54c5c65399e0e1fde554c92fe2a68 Mon Sep 17 00:00:00 2001 From: XieBiao Date: Thu, 21 Feb 2019 17:53:56 +0800 Subject: [PATCH] fix full orderbook v2 --- src/PublicApi/Symbol.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PublicApi/Symbol.php b/src/PublicApi/Symbol.php index b7fddec..77ebf80 100644 --- a/src/PublicApi/Symbol.php +++ b/src/PublicApi/Symbol.php @@ -78,7 +78,7 @@ public function getAggregatedPartOrderBook($symbol, $depth = 20) */ public function getAggregatedFullOrderBook($symbol) { - $response = $this->call(Request::METHOD_GET, '/api/v1/market/orderbook/level2', compact('symbol')); + $response = $this->call(Request::METHOD_GET, '/api/v2/market/orderbook/level2', compact('symbol')); return $response->getApiData(); }