| | |
| | | Integer tradeType = submitSalesWalletCoinOrderDto.getTradeType();
|
| | | BigDecimal price = submitSalesWalletCoinOrderDto.getPrice();
|
| | | BigDecimal amount = submitSalesWalletCoinOrderDto.getAmount();
|
| | | return orderCoinService.submitSalesWalletCoinOrder(symbol,type,tradeType,price,amount);
|
| | | if("NEKK".equals(symbol)){
|
| | | return orderCoinService.submitSalesWalletCoinOrderWithMatch(symbol,type,tradeType,price,amount,submitSalesWalletCoinOrderDto.getEntrustAmount());
|
| | |
|
| | | }else{
|
| | | return orderCoinService.submitSalesWalletCoinOrder(symbol,type,tradeType,price,amount);
|
| | | }
|
| | | }
|
| | |
|
| | | /**
|