[refactor] change type of unique_parents to Txid

This commit is contained in:
glozow
2024-07-26 14:10:21 +01:00
parent 6951ddcefd
commit 62a9ff1870
3 changed files with 3 additions and 3 deletions

View File

@@ -2978,7 +2978,7 @@ std::optional<node::PackageToValidate> PeerManagerImpl::ProcessInvalidTx(NodeId
if (add_extra_compact_tx && RecursiveDynamicUsage(*ptx) < 100000) {
AddToCompactExtraTransactions(ptx);
}
for (const uint256& parent_txid : unique_parents) {
for (const Txid& parent_txid : unique_parents) {
if (peer) AddKnownTx(*peer, parent_txid);
}