Administrator
5 hours ago 9807801c2307cc779c9ccc54afbe7df040b8eba6
src/main/java/com/xcong/excoin/modules/okxApi/OkxConfig.java
@@ -60,7 +60,7 @@
    private final PnLPriceMode unrealizedPnlPriceMode;
    private final BigDecimal maxPosSize;
    private BigDecimal step;
    private String instIdCode;
    private Long instIdCode;
    private OkxConfig(Builder builder) {
        this.apiKey = builder.apiKey;
@@ -101,7 +101,7 @@
    public String getRestBaseUrl() {
        return isProduction
                ? "https://www.okx.com"
                : "https://www.okx.cab";
                : "https://www.okx.com";
    }
    // ==================== 认证信息 ====================
@@ -141,8 +141,8 @@
    public BigDecimal getStep() { return step; }
    public void setStep(BigDecimal step) { this.step = step; }
    public String getInstIdCode() { return instIdCode; }
    public void setInstIdCode(String instIdCode) { this.instIdCode = instIdCode; }
    public Long getInstIdCode() { return instIdCode; }
    public void setInstIdCode(Long instIdCode) { this.instIdCode = instIdCode; }
    // ==================== 环境 ====================