fuzz: Limit outpoints.size in txorphan target to avoid OOM

pull/26216/head
MacroFake 2 years ago
parent 9f650062fc
commit fa5752da6a
No known key found for this signature in database
GPG Key ID: CE2B75697E69A548

@ -45,7 +45,7 @@ FUZZ_TARGET_INIT(txorphan, initialize_orphanage)
// if true, allow duplicate input when constructing tx
const bool duplicate_input = fuzzed_data_provider.ConsumeBool();
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)
{
// construct transaction
const CTransactionRef tx = [&] {

Loading…
Cancel
Save