update 修复充值和提现日志打印确实用户信息的问题

This commit is contained in:
yyb
2026-01-26 11:09:05 +08:00
parent b1aef6f4c7
commit 26e784e2d5
2 changed files with 34 additions and 29 deletions

View File

@@ -1087,16 +1087,16 @@ 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(),username,authId);
////开发环境
//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(),username,authId);
return Result.success(userWalletDataDto);
}
}