Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ To fuzz the project, you need to run ChainFuzz and provide the metadata file gen

Additional options:
- `-o 8` generates additional statistics about the called functions and their failure rates
- `--loglevel=4` provides additional insides into inputs and outputs of the functions
- `--loglevel=4` provides additional insights into inputs and outputs of the functions

### Results

Expand Down
4 changes: 2 additions & 2 deletions build/extract.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ extract_transactions() {
printf "\n${YELLOW} deploying contracts on Ganache${NC}\n"
rm -rf build
truffle deploy # > /dev/null TODO
printf "\n${GREEN} contracts has been deployed on Ganache${NC}\n"
printf "\n${GREEN} contracts have been deployed on Ganache${NC}\n"
# execute transaction extraction javascript in truffle console
truffle compile
printf "\n${YELLOW} extracting transactions ${NC}\n"
truffle exec ${extract_script}
printf "\n${GREEN} transactions has been extracted${NC}\n"
printf "\n${GREEN} transactions have been extracted${NC}\n"
# rename transactions file according to project VERSION
mv ${TRUFFLE_DIR}/transactions.json ${TRUFFLE_DIR}/fuzz_config/transactions_$VERSION.json
}
Expand Down