From 9fa3bded1ae93c1ab14fab02b4d271ead53dd8cc Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Thu, 11 Dec 2025 16:13:55 +0800
Subject: [PATCH] fix(okxNewPrice): 修复账户可用保证金字段读取错误
---
src/main/java/com/xcong/excoin/modules/okxNewPrice/celue/CaoZuoServiceImpl.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/okxNewPrice/celue/CaoZuoServiceImpl.java b/src/main/java/com/xcong/excoin/modules/okxNewPrice/celue/CaoZuoServiceImpl.java
index 9f0d0ef..85e5f3c 100644
--- a/src/main/java/com/xcong/excoin/modules/okxNewPrice/celue/CaoZuoServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/modules/okxNewPrice/celue/CaoZuoServiceImpl.java
@@ -89,7 +89,7 @@
String uplStr = (String) redisUtils.get(positionsUplKey);
//可使用的总保证金
- String cashBalStrKey = AccountWs.ACCOUNTWS_CHANNEL + ":" + CoinEnums.USDT.getCode() + ":cashBalStr";
+ String cashBalStrKey = AccountWs.ACCOUNTWS_CHANNEL + ":" + CoinEnums.USDT.getCode() + ":cashBal";
String cashBalStr = (String) redisUtils.get(cashBalStrKey);
if (StrUtil.isBlank(cashBalStr) || StrUtil.isBlank(uplStr)){
return OrderParamEnums.INIT.getValue();
--
Gitblit v1.9.1