From bede2aecbc1f3ce5d607081eec64d4cb2ab31b03 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Wed, 10 Dec 2025 16:29:44 +0800
Subject: [PATCH] feat(okxWs): 添加账户和持仓WebSocket更新间隔配置

---
 src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/PositionsWs.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/PositionsWs.java b/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/PositionsWs.java
index dfe5ec7..be35f0e 100644
--- a/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/PositionsWs.java
+++ b/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/PositionsWs.java
@@ -33,8 +33,8 @@
             args.put("instType", CoinEnums.INSTTYPE_SWAP.getCode());
             args.put("instId", CoinEnums.HE_YUE.getCode());
             JSONObject updateInterval = new JSONObject();
-            updateInterval.put("updateInterval","2000");
-            args.put("updateInterval", updateInterval);
+            updateInterval.put("updateInterval",CoinEnums.UPDATEINTERVAL.getCode());
+            args.put("extraParams", updateInterval);
             argsArray.add(args);
 
             String connId = MallUtils.getOrderNum(POSITIONSWS_CHANNEL);

--
Gitblit v1.9.1