Skip to content
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

<fix>(console,precompiled): support struct abi print, fix changeDir bug when files count over 500. #746

Merged
merged 1 commit into from
Feb 27, 2023

Conversation

kyonRay
Copy link
Member

@kyonRay kyonRay commented Feb 27, 2023

No description provided.

@sonarqubecloud
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

response.getReturnABIObject(),
response.getValues());
response.getReturnObject(),
response.getResults());

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation

Invoking [TransactionResponse.getResults](1) should be avoided because it has been deprecated.
response.getReturnABIObject(),
response.getValues());
response.getReturnObject(),
response.getResults());

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation

Invoking [TransactionResponse.getResults](1) should be avoided because it has been deprecated.
|| returnObject.isEmpty()
|| returnABIObject.isEmpty()) {
// if AbiObject not exist, use this method print results
printReturnResults(results);

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation

Invoking [ConsoleUtils.printReturnResults](1) should be avoided because it has been deprecated.
@@ -786,7 +715,8 @@
ConsoleUtils.singleLine();
System.out.println("Receipt message: " + response.getReceiptMessages());
System.out.println("Return message: " + response.getReturnMessage());
ConsoleUtils.printReturnResults(response.getResults());
ConsoleUtils.printResults(
response.getReturnABIObject(), response.getReturnObject(), response.getResults());

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation

Invoking [TransactionResponse.getResults](1) should be avoided because it has been deprecated.
ConsoleUtils.printResults(
response.getReturnABIObject(),
response.getReturnObject(),
response.getResults());

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation

Invoking [CallResponse.getResults](1) should be avoided because it has been deprecated.
Tuple2<String, String> parentAndBase = ConsoleUtils.getParentPathAndBaseName(path);
String parentDir = parentAndBase.getValue1();
String baseName = parentAndBase.getValue2();
List<BfsInfo> listResult = bfsService.list(parentDir);

Check notice

Code scanning / CodeQL

Deprecated method or constructor invocation

Invoking [BFSService.list](1) should be avoided because it has been deprecated.
@kyonRay kyonRay merged commit 5d0b0e2 into FISCO-BCOS:release-3.3.0 Feb 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants