zainali5120
2020-09-14 74ca5bc0f40e3b91464c8972392271d24dd5f066
src/main/java/com/xcong/excoin/trade/CoinTrader.java
@@ -17,7 +17,6 @@
public class CoinTrader {
    private String symbol;
    private ExchangeProducer exchangeProducer;
    private OrderCoinService orderCoinService;
    //交易币种的精度
    private int coinScale = 4;
    //基币的精度
@@ -752,11 +751,12 @@
        return count;
    }
    public OrderCoinService getOrderCoinService() {
        return orderCoinService;
    public ExchangeProducer getExchangeProducer() {
        return exchangeProducer;
    }
    public void setOrderCoinService(OrderCoinService orderCoinService) {
        this.orderCoinService = orderCoinService;
    public void setExchangeProducer(ExchangeProducer exchangeProducer) {
        this.exchangeProducer = exchangeProducer;
    }
}