From cf978ca5dab3745ad675dcb54c20a7cb92b690bd Mon Sep 17 00:00:00 2001 From: "r@l" Date: Tue, 24 Mar 2026 11:31:04 +0100 Subject: [PATCH] Fix typos in README and extract.sh * Fix "insides" -> "insights" in README CLI options description * Fix subject-verb agreement in extract.sh status messages Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 2 +- build/extract.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c4f3b7..dfb06f5 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build/extract.sh b/build/extract.sh index 25a1e84..05fcedb 100755 --- a/build/extract.sh +++ b/build/extract.sh @@ -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 }