From 51ce8b8a4c2b9620abb0e22d1a0c8612300094b3 Mon Sep 17 00:00:00 2001
From: zainali5120 <512061637@qq.com>
Date: Wed, 21 Oct 2020 20:11:12 +0800
Subject: [PATCH] 修改接点配置,添加充值hash校验

---
 src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java b/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java
index f0e24fc..af91983 100644
--- a/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java
+++ b/src/main/java/com/xcong/excoin/rabbit/pricequeue/WebsocketPriceService.java
@@ -86,12 +86,14 @@
             for (AscBigDecimal asc : list) {
                 String key = asc.getValue().toPlainString();
                 assert orderMap != null;
+                log.info("----->->{}, --> {}", JSONObject.toJSONString(orderMap), key);
                 if (orderMap.containsKey(key)) {
                     orderModelList.addAll(orderMap.get(key));
                     orderMap.remove(key);
                 }
 
             }
+            log.info("------>{}", JSONObject.toJSONString(orderModelList));
             if (CollectionUtils.isEmpty(orderModelList)) {
                 return;
             }
@@ -157,6 +159,7 @@
             for (DescBigDecimal desc : list) {
                 String key = desc.getValue().toPlainString();
                 assert orderMap != null;
+                log.info("----->->{}, --> {}", JSONObject.toJSONString(orderMap), key);
                 if (orderMap.containsKey(key)) {
                     orderModelList.addAll(orderMap.get(key));
                     orderMap.remove(key);

--
Gitblit v1.9.1