-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<sync>(code): sync code from master. #845
Conversation
<fix>(compiler): fix compiler switch version static final optimization bug.
…-BCOS#680) * <fix>(precompiled): fix bfs list /sys/ contracts bugs. * <fix>(completer): fix deploy liquid bug.
…e. (FISCO-BCOS#681) * <fix>(completer,precompiled): fix deploy liquid completer bug. (FISCO-BCOS#680) * <fix>(precompiled): fix bfs list /sys/ contracts bugs. * <fix>(completer): fix deploy liquid bug. * <feat>(contract): add deploy link feature, add listAbi address feature.
Release 3.0.1
* <test>(CI): add github actions. * <fix>(CI,crud): fix crud parseSQL error.
<release>(project): Release 3.1.0.
Co-authored-by: Kyon <[email protected]>
Quality Gate passedIssues Measures |
TransactionResponse transactionResponse = | ||
deployWasm(binPath, abiPath, path, inputParams); | ||
address = transactionResponse.getContractAddress(); | ||
abiString = FileUtils.readFileToString(new File(abiPath)); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
FileUtils.readFileToString
if (supportedVersion.compareTo(EnumNodeVersion.BCOS_3_1_0.toVersionObj()) >= 0) { | ||
fileInfoList = bfsService.list(listPath, offset, Common.LS_DEFAULT_COUNT); | ||
} else { | ||
fileInfoList = new Tuple2<>(BigInteger.ZERO, bfsService.list(listPath)); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
BFSService.list
logger.debug( | ||
"compileSolToBinAndAbi, solc version:{} ,basePath: {}", | ||
ContractCompiler.solcJVersion, | ||
solFile.getParentFile().getCanonicalPath()); |
Check failure
Code scanning / CodeQL
Insertion of sensitive information into log files High
potentially sensitive information
|
||
void linkShard(String[] params) throws Exception; | ||
|
||
void fixBFS(String[] params) throws Exception; |
Check notice
Code scanning / CodeQL
Useless parameter Note
} | ||
} | ||
|
||
public void transferBalance(String[] params) throws Exception { |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
No description provided.