From 680fc86bb6fd73cd6e5f52eb1f68213bd6828d73 Mon Sep 17 00:00:00 2001 From: Bernhard Mueller <5194767+muellerberndt@users.noreply.github.com> Date: Tue, 7 Oct 2025 09:21:48 +0700 Subject: [PATCH] Update README.md --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 1e7f501..7dbf657 100644 --- a/README.md +++ b/README.md @@ -190,12 +190,6 @@ Examples: ./hound.py graph build myaudit --auto \ --files "src/A.sol,src/B.sol,src/utils/Lib.sol" -# Generate a whitelist automatically (recommended for larger projects) -python whitelist_builder.py \ - --input /path/to/repo \ - --limit-loc 20000 \ - --output whitelists/myaudit - # Use the generated list (newline-separated) as a comma list for --files ./hound.py graph build myaudit --auto \ --files "$(tr '\n' ',' < whitelists/myaudit | sed 's/,$//')"