Browse Source

Fix masking of irrelevant bits in address groups.

pull/4/head
Alex Morcos 9 years ago
committed by Luke Dashjr
parent
commit
13642a50eb
  1. 2
      src/netbase.cpp

2
src/netbase.cpp

@ -980,7 +980,7 @@ std::vector<unsigned char> CNetAddr::GetGroup() const
nBits -= 8;
}
if (nBits > 0)
vchRet.push_back(GetByte(15 - nStartByte) | ((1 << nBits) - 1));
vchRet.push_back(GetByte(15 - nStartByte) | ((1 << (8 - nBits)) - 1));
return vchRet;
}

Loading…
Cancel
Save