新版仿ok交易所-后端
C2C
zyy
2025-10-16 75662fafb489fe044fff345e63bc63593983d307
trading-order-admin/src/main/java/com/yami/trading/api/controller/KlineController.java
@@ -70,11 +70,11 @@
                    Ico ico = icoService.getOne(iQuery);
                    if (ico != null) {
                        long now = ico.getMarketDate().getTime();*/
                        long now = item.getCreateTimeTs() * 1000;
                        data = data.stream().filter(kline -> kline != null
                                        && kline.getTs() != null
                                        && kline.getTs() > now)
                                .collect(Collectors.toList());
                    long now = item.getCreateTimeTs() * 1000;
                    data = data.stream().filter(kline -> kline != null
                                    && kline.getTs() != null
                                    && kline.getTs() > now)
                            .collect(Collectors.toList());
                    //}
                }
            }