We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b376c09 commit 42aa8a7Copy full SHA for 42aa8a7
src/test/fuzz/txorphan.cpp
@@ -49,7 +49,7 @@ FUZZ_TARGET(txorphan, .init = initialize_orphanage)
49
// if true, allow duplicate input when constructing tx
50
const bool duplicate_input = fuzzed_data_provider.ConsumeBool();
51
52
- LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 10 * DEFAULT_MAX_ORPHAN_TRANSACTIONS)
+ LIMITED_WHILE(outpoints.size() < 200'000 && fuzzed_data_provider.ConsumeBool(), 10 * DEFAULT_MAX_ORPHAN_TRANSACTIONS)
53
{
54
// construct transaction
55
const CTransactionRef tx = [&] {
0 commit comments