diff options
| author | Gavin Andresen <[email protected]> | 2013-10-05 21:37:13 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-10-05 21:37:13 -0700 |
| commit | 1c4994253cb17db490850835679277c9828530bb (patch) | |
| tree | b8eec74a004cc3a9a38c59e65df55f1a6cc58363 /src/netbase.cpp | |
| parent | Merge pull request #3047 from Diapolo/misbehave (diff) | |
| parent | Hurricane Electric uses block 2001:470::, not 2011:470:: (diff) | |
| download | discoin-1c4994253cb17db490850835679277c9828530bb.tar.xz discoin-1c4994253cb17db490850835679277c9828530bb.zip | |
Merge pull request #3053 from dajohi/master
Hurricane Electric uses block 2001:470::, not 2011:470::
Diffstat (limited to 'src/netbase.cpp')
| -rw-r--r-- | src/netbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index acc2ae32a..360ecdd95 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -864,7 +864,7 @@ std::vector<unsigned char> CNetAddr::GetGroup() const nBits = 4; } // for he.net, use /36 groups - else if (GetByte(15) == 0x20 && GetByte(14) == 0x11 && GetByte(13) == 0x04 && GetByte(12) == 0x70) + else if (GetByte(15) == 0x20 && GetByte(14) == 0x01 && GetByte(13) == 0x04 && GetByte(12) == 0x70) nBits = 36; // for the rest of the IPv6 network, use /32 groups else |