File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ FUZZ_TARGET(ephemeral_package_eval, .init = initialize_tx_pool)
225
225
std::optional<COutPoint> outpoint_to_rbf{fuzzed_data_provider.ConsumeBool () ? GetChildEvictingPrevout (tx_pool) : std::nullopt};
226
226
227
227
// Make small packages
228
- const auto num_txs = outpoint_to_rbf ? 1 : ( size_t ) fuzzed_data_provider.ConsumeIntegralInRange <int >(1 , 4 );
228
+ const auto num_txs = outpoint_to_rbf ? 1 : fuzzed_data_provider.ConsumeIntegralInRange <size_t >(1 , 4 );
229
229
230
230
std::set<COutPoint> package_outpoints;
231
231
while (txs.size () < num_txs) {
@@ -377,7 +377,7 @@ FUZZ_TARGET(tx_package_eval, .init = initialize_tx_pool)
377
377
std::vector<CTransactionRef> txs;
378
378
379
379
// Make packages of 1-to-26 transactions
380
- const auto num_txs = ( size_t ) fuzzed_data_provider.ConsumeIntegralInRange <int >(1 , 26 );
380
+ const auto num_txs = fuzzed_data_provider.ConsumeIntegralInRange <size_t >(1 , 26 );
381
381
std::set<COutPoint> package_outpoints;
382
382
while (txs.size () < num_txs) {
383
383
// Create transaction to add to the mempool
You can’t perform that action at this time.
0 commit comments