Skip to content

Commit d62ea7a

Browse files
committed
Updated readme
1 parent aafa908 commit d62ea7a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ java -jar build/libs/evm-lisa-all.jar [options]
7474
Options:
7575
-a,--address <arg> Address of an Ethereum smart contract.
7676
-b,--benchmark <arg> Filepath of the benchmark.
77-
--basic-blocks Print the basic blocks.
77+
--basic-blocks Generate CFG with basic blocks.
7878
-c,--cores <arg> Number of cores used in benchmark.
7979
--checker-reentrancy Enable re-entrancy checker.
8080
--checker-timestampdependency Enable timestamp-dependency checker.
@@ -107,7 +107,6 @@ java -jar build/libs/evm-lisa-all.jar \
107107
-a 0x7c21C4Bbd63D05Fa9F788e38d14e18FC52E9557B \
108108
--stack-size 64 \
109109
--stack-set-size 10 \
110-
--creation-code \
111110
--link-unsound-jumps-to-all-jumpdest
112111
```
113112

@@ -120,7 +119,6 @@ evm-lisa:latest \
120119
-a 0x7c21C4Bbd63D05Fa9F788e38d14e18FC52E9557B \
121120
--stack-size 64 \
122121
--stack-set-size 10 \
123-
--creation-code \
124122
--link-unsound-jumps-to-all-jumpdest
125123
```
126124

src/main/java/it/unipr/EVMLiSA.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,7 @@ private Options getOptions() {
11911191

11921192
Option basicBlocksOption = Option.builder()
11931193
.longOpt("basic-blocks")
1194-
.desc("Print the basic blocks.")
1194+
.desc("Generate CFG with basic blocks.")
11951195
.required(false)
11961196
.hasArg(false)
11971197
.build();

0 commit comments

Comments
 (0)