File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- // Copyright (c) 2022 The Bitcoin Core developers
1+ // Copyright (c) 2022-present The Bitcoin Core developers
22// Distributed under the MIT software license, see the accompanying
33// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44
@@ -37,11 +37,11 @@ FUZZ_TARGET(txorphan, .init = initialize_orphanage)
3737 SetMockTime (ConsumeTime (fuzzed_data_provider));
3838
3939 TxOrphanage orphanage;
40- std::set <COutPoint> outpoints;
40+ std::vector <COutPoint> outpoints; // Duplicates are tolerated
4141
4242 // initial outpoints used to construct transactions later
4343 for (uint8_t i = 0 ; i < 4 ; i++) {
44- outpoints.emplace (Txid::FromUint256 (uint256{i}), 0 );
44+ outpoints.emplace_back (Txid::FromUint256 (uint256{i}), 0 );
4545 }
4646
4747 CTransactionRef ptx_potential_parent = nullptr ;
@@ -67,7 +67,7 @@ FUZZ_TARGET(txorphan, .init = initialize_orphanage)
6767 auto new_tx = MakeTransactionRef (tx_mut);
6868 // add newly constructed outpoints to the coin pool
6969 for (uint32_t i = 0 ; i < num_out; i++) {
70- outpoints.emplace (new_tx->GetHash (), i);
70+ outpoints.emplace_back (new_tx->GetHash (), i);
7171 }
7272 return new_tx;
7373 }();
You can’t perform that action at this time.
0 commit comments