Skip to content

Commit

Permalink
<fix>(build): update java sdk version to 3.0.1. (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Sep 26, 2022
1 parent 0e7c33b commit 4421399
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
//compile 'org.fisco-bcos:solcJ:0.5.2.1'
compile 'org.fisco-bcos:solcJ:0.8.11.1'

compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.0.1-SNAPSHOT')
compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.0.1')
compile('org.fisco-bcos:evm-static-analysis:1.0.0-rc3')
compile('commons-cli:commons-cli:1.5.0')
compile('org.jline:jline:3.21.0')
Expand Down
8 changes: 6 additions & 2 deletions src/main/java/console/command/model/HelpInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ public static void deployHelp(boolean isWasm) {
System.out.println(
"* parameters -- Parameters will be passed to constructor when deploying the contract.");
System.out.println(
"* -l[Optional] -- deploy with link, link BFS path after deploy contract success.");
"* -l[Optional] -- deploy with link, link BFS path after deploy contract success, \n"
+ " link must locate under '/apps', and be composed of contract name and version ");
System.out.println(
"* --parallel-analysis/-p[Optional] -- parallel conflict analysis with the contract, default: no.");
} else {
Expand All @@ -231,6 +232,9 @@ public static void deployHelp(boolean isWasm) {
"* abi -- The path of ABI file after contract being compiled via cargo-liquid.");
System.out.println(
"* path -- The path of BFS where the contract will be located at, such as '/apps/liquid/YouContract/'.");
System.out.println(
"* -l[Optional] -- deploy with link, link BFS path after deploy contract success, \n"
+ " link must locate under '/apps', and be composed of contract name and version ");
System.out.println(
"* parameters -- Parameters will be passed to constructor when deploying the contract.");
}
Expand Down Expand Up @@ -264,8 +268,8 @@ public static void linkHelp() {
System.out.println(
"* path[Required] -- The BFS path of link, link must locate under '/apps', and be composed of contract name and version.");
System.out.println("* contractAddress[Required] -- The address of a contract.");
System.out.println("Example: (if in wasm)\nln /apps/Name/Version 0x1234567890");
System.out.println("Example: (if in evm)\nln /apps/Name/Version /apps/test/HelloWorld");
System.out.println("Example: (if in wasm)\nln /apps/Name/Version 0x1234567890");
}

public static void addObserverHelp() {
Expand Down

0 comments on commit 4421399

Please sign in to comment.