update 删除部分注释

This commit is contained in:
yyb
2026-01-20 11:04:43 +08:00
parent b6b4c27e24
commit d8d8a3da15
2 changed files with 0 additions and 13 deletions

View File

@@ -59,9 +59,6 @@ public class LeaseProductMachineServiceImpl extends ServiceImpl<LeaseProductMach
@Override
public Result<Map<String, List<UserMinerDto>> > getUserMinersList(UserMinerVo userMinerVo) {
String userId = SecurityUtils.getUsername();
//开发环境
//userId = "Eudora.law@outlook.com";
List<UserMinerDto> userMinersList = leaseProductMachineMapper.getUserMinersList(userId,userMinerVo.getCoin());
Map<String, List<UserMinerDto>> collect = userMinersList.stream().collect(Collectors.groupingBy(UserMinerDto::getCoin));
return Result.success(collect);

View File

@@ -1086,16 +1086,6 @@ public class LeaseUserServiceImpl extends ServiceImpl<LeaseUserMapper, LeaseUser
}else{
for (UserWalletDataDto userWalletDataDto : userWalletDataDtoList) {
if (userWalletDataDto.getFromSymbol().equals(chainAndCoinVo.getCoin())){
//开发环境
//sendMessage(UserWalletDataDto.builder()
// .queueId(userWalletDataDto.getQueueId())
// .fromAddress(userWalletDataDto.getFromAddress())
// .fromChain(chainAndCoinVo.getChain())
// .fromSymbol(chainAndCoinVo.getCoin())
// .balance(BigDecimal.ZERO)
// .userId(userWalletDataDto.getUserId())
// .qrcode(userWalletDataDto.getQrcode())
// .build());
return Result.success(userWalletDataDto);
}
}