src/main/java/com/xcong/excoin/modules/okxNewPrice/OkxQuantWebSocketClient.java
@@ -295,6 +295,13 @@ * @param response 包含价格数据的 JSON 对象 */ private void processPushData(JSONObject response) { String op = response.getString("op"); if (op != null){ if (TradeOrderWs.ORDERWS_CHANNEL.equals(op)) { log.info("收到下单推动结果: {}", response.getJSONObject("data")); return ; } } JSONObject arg = response.getJSONObject("arg"); if (arg == null) { log.warn("无效的推送数据,缺少 'arg' 字段 :{}",response);