|
|
|
@ -194,7 +194,10 @@ public class ConfluxServiceImpl implements ConfluxService {
|
|
|
|
|
System.out.println("--------正在铸造----------->"); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return AjaxResult.success("上链成功!"); |
|
|
|
|
Map<String,Object> map=new HashMap<>(); |
|
|
|
|
map.put("contract",contract); |
|
|
|
|
// map.put("ids",tokenIds);
|
|
|
|
|
return AjaxResult.success("上链成功!",map); |
|
|
|
|
} |
|
|
|
|
return AjaxResult.error("token或sign签名失效!"); |
|
|
|
|
} |
|
|
|
@ -219,8 +222,8 @@ public class ConfluxServiceImpl implements ConfluxService {
|
|
|
|
|
map.put("timesTamp", time); |
|
|
|
|
try { |
|
|
|
|
map.put("sign", AESUtil.encrypt(ConfluxArt.SIGN + time)); |
|
|
|
|
redisUtils.set(privateKey.getAppId(), token,360000l);//缓存一小时
|
|
|
|
|
redisUtils.set(md5Key, AESUtil.encrypt(ConfluxArt.SIGN + time),360000l); |
|
|
|
|
redisUtils.set(privateKey.getAppId(), token,3600l);//缓存一小时
|
|
|
|
|
redisUtils.set(md5Key, AESUtil.encrypt(ConfluxArt.SIGN + time),3600l); |
|
|
|
|
map.put("expireTime",3600);//过期时间 单位秒
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|