fix
Helius
2022-03-02 412c5b8cabb9c9accb12de9f6598f1625d5e264c
src/main/java/com/xcong/excoin/common/response/Result.java
@@ -70,4 +70,11 @@
        result.msg = msg;
        return result;
    }
    public static Result timeOut(String msg) {
        Result result = new Result();
        result.code = -3;
        result.msg = msg;
        return result;
    }
}