mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-31 10:41:08 +00:00
fuzz: doc: remove any mention to address_deserialize_v2
This commit is contained in:
parent
13891a8a68
commit
caf4843a59
@ -82,7 +82,7 @@ of the test. Just make sure to use double-dash to distinguish them from the
|
|||||||
fuzzer's own arguments:
|
fuzzer's own arguments:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ FUZZ=address_deserialize_v2 build_fuzz/bin/fuzz -runs=1 fuzz_corpora/address_deserialize_v2 --checkaddrman=5 --printtoconsole=1
|
$ FUZZ=address_deserialize build_fuzz/bin/fuzz -runs=1 fuzz_corpora/address_deserialize --checkaddrman=5 --printtoconsole=1
|
||||||
```
|
```
|
||||||
|
|
||||||
## Fuzzing corpora
|
## Fuzzing corpora
|
||||||
|
|||||||
@ -51,7 +51,7 @@ static std::vector<const char*> g_args;
|
|||||||
static void SetArgs(int argc, char** argv) {
|
static void SetArgs(int argc, char** argv) {
|
||||||
for (int i = 1; i < argc; ++i) {
|
for (int i = 1; i < argc; ++i) {
|
||||||
// Only take into account arguments that start with `--`. The others are for the fuzz engine:
|
// Only take into account arguments that start with `--`. The others are for the fuzz engine:
|
||||||
// `fuzz -runs=1 fuzz_corpora/address_deserialize_v2 --checkaddrman=5`
|
// `fuzz -runs=1 fuzz_corpora/address_deserialize --checkaddrman=5`
|
||||||
if (strlen(argv[i]) > 2 && argv[i][0] == '-' && argv[i][1] == '-') {
|
if (strlen(argv[i]) > 2 && argv[i][0] == '-' && argv[i][1] == '-') {
|
||||||
g_args.push_back(argv[i]);
|
g_args.push_back(argv[i]);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user