新版仿ok交易所-后端
peter
2025-12-24 b1f2be5951009827bb3f12531a85cdb8722a16c1
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());
                    //}
                }
            }