mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
[fuzz] allow negative time jumps in txdownloadman_impl
This commit is contained in:
parent
917ab810d9
commit
8351562bec
1 changed files with 3 additions and 2 deletions
|
@ -430,8 +430,9 @@ FUZZ_TARGET(txdownloadman_impl, .init = initialize)
|
|||
}
|
||||
);
|
||||
|
||||
// Jump ahead in time
|
||||
time += fuzzed_data_provider.PickValueInArray(TIME_SKIPS);
|
||||
auto time_skip = fuzzed_data_provider.PickValueInArray(TIME_SKIPS);
|
||||
if (fuzzed_data_provider.ConsumeBool()) time_skip *= -1;
|
||||
time += time_skip;
|
||||
CheckInvariants(txdownload_impl, max_orphan_count);
|
||||
}
|
||||
// Disconnect everybody, check that all data structures are empty.
|
||||
|
|
Loading…
Add table
Reference in a new issue