We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e96345 commit 04c48b1Copy full SHA for 04c48b1
.github/workflows/ci.yml
@@ -241,6 +241,7 @@ jobs:
241
declare -A CORPUS_MAP=(
242
["fuzz_target_block_deserialize"]="block_deserialize"
243
["fuzz_target_block_hash"]="block_deserialize"
244
+ ["fuzz_target_block_transactions"]="block_deserialize"
245
["fuzz_target_verify"]=""
246
["fuzz_target_chainman"]=""
247
)
fuzz/Cargo.toml
@@ -41,3 +41,10 @@ path = "fuzz_targets/fuzz_target_block_hash.rs"
41
test = false
42
doc = false
43
bench = false
44
+
45
+[[bin]]
46
+name = "fuzz_target_block_transactions"
47
+path = "fuzz_targets/fuzz_target_block_transactions.rs"
48
+test = false
49
+doc = false
50
+bench = false
fuzz/fuzz_targets/fuzz_target_block_transactions.rs
0 commit comments