[WIP] Remove unused statement in serialization

Zcash: Excludes changes to CBanEntry and CHDChain, which we don't have yet.
This commit is contained in:
Pavel Janík 2016-09-02 22:05:47 +02:00 committed by Jack Grigg
parent c803fa1094
commit ead36d85c7
No known key found for this signature in database
GPG Key ID: 665DBCD284F7DAFF
2 changed files with 0 additions and 2 deletions

View File

@ -316,7 +316,6 @@ public:
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
READWRITE(*(CTransaction*)this);
nVersion = this->nVersion;
READWRITE(hashBlock);
READWRITE(vMerkleBranch);
READWRITE(nIndex);

View File

@ -62,7 +62,6 @@ public:
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
READWRITE(this->nVersion);
nVersion = this->nVersion;
READWRITE(nCreateTime);
}