Skip to content

Commit 4421399

Browse files
authored
<fix>(build): update java sdk version to 3.0.1. (#685)
1 parent 0e7c33b commit 4421399

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
//compile 'org.fisco-bcos:solcJ:0.5.2.1'
4141
compile 'org.fisco-bcos:solcJ:0.8.11.1'
4242

43-
compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.0.1-SNAPSHOT')
43+
compile('org.fisco-bcos.java-sdk:fisco-bcos-java-sdk:3.0.1')
4444
compile('org.fisco-bcos:evm-static-analysis:1.0.0-rc3')
4545
compile('commons-cli:commons-cli:1.5.0')
4646
compile('org.jline:jline:3.21.0')

src/main/java/console/command/model/HelpInfo.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,8 @@ public static void deployHelp(boolean isWasm) {
218218
System.out.println(
219219
"* parameters -- Parameters will be passed to constructor when deploying the contract.");
220220
System.out.println(
221-
"* -l[Optional] -- deploy with link, link BFS path after deploy contract success.");
221+
"* -l[Optional] -- deploy with link, link BFS path after deploy contract success, \n"
222+
+ " link must locate under '/apps', and be composed of contract name and version ");
222223
System.out.println(
223224
"* --parallel-analysis/-p[Optional] -- parallel conflict analysis with the contract, default: no.");
224225
} else {
@@ -231,6 +232,9 @@ public static void deployHelp(boolean isWasm) {
231232
"* abi -- The path of ABI file after contract being compiled via cargo-liquid.");
232233
System.out.println(
233234
"* path -- The path of BFS where the contract will be located at, such as '/apps/liquid/YouContract/'.");
235+
System.out.println(
236+
"* -l[Optional] -- deploy with link, link BFS path after deploy contract success, \n"
237+
+ " link must locate under '/apps', and be composed of contract name and version ");
234238
System.out.println(
235239
"* parameters -- Parameters will be passed to constructor when deploying the contract.");
236240
}
@@ -264,8 +268,8 @@ public static void linkHelp() {
264268
System.out.println(
265269
"* path[Required] -- The BFS path of link, link must locate under '/apps', and be composed of contract name and version.");
266270
System.out.println("* contractAddress[Required] -- The address of a contract.");
267-
System.out.println("Example: (if in wasm)\nln /apps/Name/Version 0x1234567890");
268271
System.out.println("Example: (if in evm)\nln /apps/Name/Version /apps/test/HelloWorld");
272+
System.out.println("Example: (if in wasm)\nln /apps/Name/Version 0x1234567890");
269273
}
270274

271275
public static void addObserverHelp() {

0 commit comments

Comments
 (0)