Administrator
2026-06-15 a3c3b047c54f96d33b9efbd32cc13dbfc7c872d0
src/main/java/com/xcong/excoin/modules/gateApi/GateGridTradeService.java
@@ -745,7 +745,7 @@
//                );
//            }
            int shortTime = Integer.parseInt(config.getBaseQuantity()) + 1;
            int shortTime = Integer.parseInt(config.getBaseQuantity()) / Integer.parseInt(config.getQuantity()) + 1;
            for (int id = 2; id <= shortTime; id++) {
                GridElement elem = GridElement.findById(id);
                if (elem == null) {
@@ -768,7 +768,7 @@
            }
            int longTime = Integer.parseInt(config.getBaseQuantity()) + 1;
            int longTime = Integer.parseInt(config.getBaseQuantity()) / Integer.parseInt(config.getQuantity()) + 1;
            for (int id = -2; id >= -longTime; id--) {
                GridElement elem = GridElement.findById(id);
                if (elem == null) {