From a2773d56c274ff8bd938457e2fcece167c96dc41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=81=E4=BC=99=E8=AE=A1?= <397932843@qq.com> Date: Wed, 12 May 2021 18:40:25 +0800 Subject: [PATCH] Update User.php putUserDataStream or deleteUserDataStream no need signature --- src/Api/Spot/User.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Api/Spot/User.php b/src/Api/Spot/User.php index 684eea5..18a664a 100644 --- a/src/Api/Spot/User.php +++ b/src/Api/Spot/User.php @@ -206,6 +206,7 @@ public function putUserDataStream(array $data=[]){ $this->type='PUT'; $this->path='/api/v3/userDataStream'; $this->data=$data; + $this->signature=false; return $this->exec(); } @@ -216,6 +217,7 @@ public function deleteUserDataStream(array $data=[]){ $this->type='DELETE'; $this->path='/api/v3/userDataStream'; $this->data=$data; + $this->signature=false; return $this->exec(); }