Bloom filter for probabilistic membership testing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Reject duplicate CBOR keys in VDS import

import used List.find_opt on raw map pairs, so a duplicate
"version" or "entries" key would shadow later occurrences.
Now checks for byte-equal duplicate keys before field extraction,
consistent with the receipt parser's cbor_check_unique_keys.

+4 -5
+4 -5
fuzz/dune
··· 19 19 (alias fuzz) 20 20 (enabled_if 21 21 (= %{profile} afl)) 22 - (deps 23 - (source_tree corpus) 24 - fuzz.exe 25 - gen_corpus.exe) 22 + (deps fuzz.exe) 26 23 (action 27 - (echo "AFL fuzzer built: %{exe:fuzz.exe}\n"))) 24 + (progn 25 + (run %{exe:fuzz.exe} --gen-corpus corpus) 26 + (run afl-fuzz -V 60 -i corpus -o _fuzz -- %{exe:fuzz.exe} @@))))