File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2978,7 +2978,7 @@ std::optional<node::PackageToValidate> PeerManagerImpl::ProcessInvalidTx(NodeId
2978
2978
if (add_extra_compact_tx && RecursiveDynamicUsage (*ptx) < 100000 ) {
2979
2979
AddToCompactExtraTransactions (ptx);
2980
2980
}
2981
- for (const uint256 & parent_txid : unique_parents) {
2981
+ for (const Txid & parent_txid : unique_parents) {
2982
2982
if (peer) AddKnownTx (*peer, parent_txid);
2983
2983
}
2984
2984
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ struct PackageToValidate {
92
92
struct RejectedTxTodo
93
93
{
94
94
bool m_should_add_extra_compact_tx;
95
- std::vector<uint256 > m_unique_parents;
95
+ std::vector<Txid > m_unique_parents;
96
96
std::optional<PackageToValidate> m_package_to_validate;
97
97
};
98
98
Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ node::RejectedTxTodo TxDownloadManagerImpl::MempoolRejectedTx(const CTransaction
308
308
// Whether we should call AddToCompactExtraTransactions at the end
309
309
bool add_extra_compact_tx{first_time_failure};
310
310
// Hashes to pass to AddKnownTx later
311
- std::vector<uint256 > unique_parents;
311
+ std::vector<Txid > unique_parents;
312
312
// Populated if failure is reconsiderable and eligible package is found.
313
313
std::optional<node::PackageToValidate> package_to_validate;
314
314
You can’t perform that action at this time.
0 commit comments