Browse Source

[WIP] Remove unused statement in serialization

Zcash: Excludes changes to CBanEntry and CHDChain, which we don't have yet.
pull/4/head
Pavel Janík 8 years ago
committed by Jack Grigg
parent
commit
ead36d85c7
No known key found for this signature in database GPG Key ID: 665DBCD284F7DAFF
  1. 1
      src/wallet/wallet.h
  2. 1
      src/wallet/walletdb.h

1
src/wallet/wallet.h

@ -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);

1
src/wallet/walletdb.h

@ -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);
}

Loading…
Cancel
Save