File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -946,16 +946,16 @@ std::optional<AddressPosition> AddrManImpl::FindAddressEntry_(const CAddress& ad
946946
947947 if (addr_info->fInTried ) {
948948 int bucket{addr_info->GetTriedBucket (nKey, m_asmap)};
949- return AddressPosition (/* tried =*/ true ,
950- /* multiplicity =*/ 1 ,
951- /* bucket =*/ bucket,
952- /* position =*/ addr_info->GetBucketPosition (nKey, false , bucket));
949+ return AddressPosition (/* tried_in =*/ true ,
950+ /* multiplicity_in =*/ 1 ,
951+ /* bucket_in =*/ bucket,
952+ /* position_in =*/ addr_info->GetBucketPosition (nKey, false , bucket));
953953 } else {
954954 int bucket{addr_info->GetNewBucket (nKey, m_asmap)};
955- return AddressPosition (/* tried =*/ false ,
956- /* multiplicity =*/ addr_info->nRefCount ,
957- /* bucket =*/ bucket,
958- /* position =*/ addr_info->GetBucketPosition (nKey, true , bucket));
955+ return AddressPosition (/* tried_in =*/ false ,
956+ /* multiplicity_in =*/ addr_info->nRefCount ,
957+ /* bucket_in =*/ bucket,
958+ /* position_in =*/ addr_info->GetBucketPosition (nKey, true , bucket));
959959 }
960960}
961961
You can’t perform that action at this time.
0 commit comments