| | |
| | | |
| | | String symbol = ""; |
| | | if (withdraw.getMethod().indexOf("BTC") != -1) { |
| | | symbol = "btc"; |
| | | symbol = "btcusdt"; |
| | | } else if (withdraw.getMethod().indexOf("ETH") != -1) { |
| | | symbol = "eth"; |
| | | } else { |
| | | symbol = "ethusdt"; |
| | | } else if(withdraw.getMethod().indexOf("USDC") != -1){ |
| | | symbol = "usdcusdt"; |
| | | }else { |
| | | symbol = "usdt"; |
| | | } |
| | | if ("usdt".equals(symbol)) { |
| | |
| | | logService.save(log); |
| | | tipService.deleteTip(withdraw.getUuid().toString()); |
| | | } |
| | | |
| | | @Override |
| | | public long waitCount() { |
| | | return count(Wrappers.<Withdraw>query().lambda().eq(Withdraw::getStatus, 0)); |