diff options
Diffstat (limited to 'src/uint256.h')
-rw-r--r-- | src/uint256.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uint256.h b/src/uint256.h index 94fe66d26c..86e7c0b6c6 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -92,13 +92,13 @@ public: } template<typename Stream> - void Serialize(Stream& s, int nType, int nVersion) const + void Serialize(Stream& s) const { s.write((char*)data, sizeof(data)); } template<typename Stream> - void Unserialize(Stream& s, int nType, int nVersion) + void Unserialize(Stream& s) { s.read((char*)data, sizeof(data)); } |