Skip to content

Commit e2ee91b

Browse files
committed
Mask the CInv types in CInv::operator<
1 parent 7429425 commit e2ee91b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/protocol.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,9 @@ CInv::CInv(const std::string& strType, const uint256& hashIn)
165165

166166
bool operator<(const CInv& a, const CInv& b)
167167
{
168-
return (a.type < b.type || (a.type == b.type && a.hash < b.hash));
168+
int aType = a.type & MSG_TYPE_MASK;
169+
int bType = b.type & MSG_TYPE_MASK;
170+
return (aType < bType || (aType == bType && a.hash < b.hash));
169171
}
170172

171173
bool CInv::IsKnownType() const

0 commit comments

Comments
 (0)