You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
com.webank.weid.blockchain.protocol.response.ResponseData resp = evidenceBlockchainService.createEvidence(
hashValue,
signature,
extra,
timestamp,
privateKey
);
if (resp.getErrorCode() == ErrorCode.SUCCESS.getCode()) {
return new ResponseData<>(resp.getResult(), ErrorCode.SUCCESS);
} else {
return new ResponseData<>(StringUtils.EMPTY, resp.getErrorCode(), resp.getErrorMessage());
}
该处的 return new ResponseData<>(resp.getResult(), ErrorCode.SUCCESS);返回是否应该改成return new ResponseData<>(resp.getResult(), ErrorCode.SUCCESS,resp.getTransactionInfo());
The text was updated successfully, but these errors were encountered:
com.webank.weid.blockchain.protocol.response.ResponseData resp = evidenceBlockchainService.createEvidence(
hashValue,
signature,
extra,
timestamp,
privateKey
);
if (resp.getErrorCode() == ErrorCode.SUCCESS.getCode()) {
return new ResponseData<>(resp.getResult(), ErrorCode.SUCCESS);
} else {
return new ResponseData<>(StringUtils.EMPTY, resp.getErrorCode(), resp.getErrorMessage());
}
该处的 return new ResponseData<>(resp.getResult(), ErrorCode.SUCCESS);返回是否应该改成return new ResponseData<>(resp.getResult(), ErrorCode.SUCCESS,resp.getTransactionInfo());
The text was updated successfully, but these errors were encountered: