From 50609547e8fedfc1638476206d1a211b84226599 Mon Sep 17 00:00:00 2001 From: "vn.py" Date: Sun, 10 Jun 2018 16:09:25 +0800 Subject: [PATCH] =?UTF-8?q?[Mod]HuobiGateway=E8=BF=87=E6=BB=A4=E7=94=B1?= =?UTF-8?q?=E4=BA=8E=E8=AF=B7=E6=B1=82=E8=B6=85=E6=97=B6=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E7=9A=84API=E7=AD=BE=E5=90=8D=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vnpy/trader/gateway/huobiGateway/huobiGateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vnpy/trader/gateway/huobiGateway/huobiGateway.py b/vnpy/trader/gateway/huobiGateway/huobiGateway.py index d4b72e90..c1c587c9 100644 --- a/vnpy/trader/gateway/huobiGateway/huobiGateway.py +++ b/vnpy/trader/gateway/huobiGateway/huobiGateway.py @@ -453,7 +453,7 @@ class HuobiTradeApi(TradeApi): def onError(self, msg, reqid): """错误回调""" # 忽略请求超时错误 - if '429' in msg: + if '429' in msg or 'api-signature-not-valid' in msg: return err = VtErrorData()