Helius
2020-07-07 e0880458f38fb66e9fd5f1c64ed6ed3bdef1f24c
modify
1 files modified
4 ■■■■ changed files
src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java 4 ●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/contract/parameter/vo/OrderListVo.java
@@ -64,12 +64,12 @@
    private Integer tradeType;
    public BigDecimal getOpeningFeeAmount() {
        return openingFeeAmount.setScale(8, BigDecimal.ROUND_DOWN);
        return openingFeeAmount == null ? openingFeeAmount : openingFeeAmount.setScale(8, BigDecimal.ROUND_DOWN);
    }
    public BigDecimal getClosingFeeAmount() {
        return closingFeeAmount.setScale(8, BigDecimal.ROUND_DOWN);
        return closingFeeAmount == null ? closingFeeAmount : closingFeeAmount.setScale(8, BigDecimal.ROUND_DOWN);
    }
}