diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2011-12-19 07:25:16 -0800 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-12-19 07:25:16 -0800 |
commit | 1f3bc1c2399fb53eb1b2222194332aca07a31a36 (patch) | |
tree | e7afd7d6d4b892af685985f75d5b3d7b5c2330be /src/uint256.h | |
parent | cd2b8832fdb087e740e8d6da69c75f46d69b52d2 (diff) | |
parent | f8ded588a2f78ac2767a60c716a7d15c273b4fc7 (diff) |
Merge pull request #707 from gavinandresen/BIP14
Implement BIP 14 : separate protocol version from client version
Diffstat (limited to 'src/uint256.h')
-rw-r--r-- | src/uint256.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uint256.h b/src/uint256.h index 3e20201387..b6132822c5 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -364,19 +364,19 @@ public: } - unsigned int GetSerializeSize(int nType=0, int nVersion=VERSION) const + unsigned int GetSerializeSize(int nType=0, int nVersion=PROTOCOL_VERSION) const { return sizeof(pn); } template<typename Stream> - void Serialize(Stream& s, int nType=0, int nVersion=VERSION) const + void Serialize(Stream& s, int nType=0, int nVersion=PROTOCOL_VERSION) const { s.write((char*)pn, sizeof(pn)); } template<typename Stream> - void Unserialize(Stream& s, int nType=0, int nVersion=VERSION) + void Unserialize(Stream& s, int nType=0, int nVersion=PROTOCOL_VERSION) { s.read((char*)pn, sizeof(pn)); } |