Parcourir la source

铸造者Id统一

licailing il y a 4 ans
Parent
commit
d9a022297a

+ 1 - 1
src/main/java/com/izouma/nineth/service/MintOrderService.java

@@ -37,7 +37,7 @@ public class MintOrderService {
     @Transactional
     public void create(Long userId, List<Long> assetIds) {
         User user = userRepo.findByIdAndDelFalse(userId).orElseThrow(new BusinessException("用户不存在"));
-        User blackHole = userRepo.findByIdAndDelFalse(134670L).orElseThrow(new BusinessException("无法铸造"));
+        User blackHole = userRepo.findByIdAndDelFalse(1435297L).orElseThrow(new BusinessException("无法铸造"));
         if (assetIds.size() != 3) {
             throw new BusinessException("数量不正确,请重新选择");
         }