新版仿ok交易所-后端
1
zj
2026-02-02 95148261c39f46e4a6f25d4f7b900f60cdcff3b0
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());
                    //}
                }
            }