From a986f3571c7e18ade4665fe5999b445b5762264d Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Mon, 11 May 2026 23:07:15 +0800
Subject: [PATCH] refactor(gateApi): 修改网格交易队列生成算法
---
src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java b/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java
index a199dd4..6b3b1d6 100644
--- a/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/modules/okxNewPrice/okxWs/wanggeList/WangGeListServiceImpl.java
@@ -41,13 +41,9 @@
}
String shangxianValue = gridByPrice.getJiage_shangxian();
- log.info("价格上限: {}", shangxianValue);
String xiaxianValue = gridByPrice.getJiage_xiaxian();
- log.info("价格下限: {}", xiaxianValue);
String jianjuValue = gridByPrice.getJian_ju();
- log.info("价格间隔: {}", jianjuValue);
String weishuValueStr = gridByPrice.getXiaoshu_weishu();
- log.info("价格位数: {}", weishuValueStr);
try {
BigDecimal shangxian = new BigDecimal(shangxianValue);
@@ -77,7 +73,6 @@
return null;
}
- log.info("网格初始化成功");
return queueAsc;
} catch (NumberFormatException e) {
log.error("解析价格参数失败", e);
--
Gitblit v1.9.1