mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 02:33:24 -03:00
fuzz: Limit wallet_notifications iterations
This commit is contained in:
parent
45e2f8f87d
commit
fa461d7a43
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ FUZZ_TARGET(wallet_notifications, .init = initialize_setup)
|
|||
auto& [coins, block]{chain.back()};
|
||||
coins.emplace(total_amount, COutPoint{Txid::FromUint256(uint256::ONE), 1});
|
||||
}
|
||||
LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 200)
|
||||
LIMITED_WHILE(fuzzed_data_provider.ConsumeBool(), 20)
|
||||
{
|
||||
CallOneOf(
|
||||
fuzzed_data_provider,
|
||||
|
|
Loading…
Add table
Reference in a new issue