We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f40271 commit faa05d1Copy full SHA for faa05d1
src/wallet/test/fuzz/fees.cpp
@@ -56,7 +56,7 @@ FUZZ_TARGET_INIT(wallet_fees, initialize_setup)
56
coin_control.m_feerate = CFeeRate{ConsumeMoney(fuzzed_data_provider, /*max=*/COIN)};
57
}
58
if (fuzzed_data_provider.ConsumeBool()) {
59
- coin_control.m_confirm_target = fuzzed_data_provider.ConsumeIntegral<unsigned int>();
+ coin_control.m_confirm_target = fuzzed_data_provider.ConsumeIntegralInRange<unsigned int>(0, 999'000);
60
61
62
FeeCalculation fee_calculation;
0 commit comments