Add deserializing constructors to CTransaction and CMutableTransaction
This commit is contained in:
parent
0e85204a10
commit
da60506fc8
2 changed files with 13 additions and 0 deletions
|
@ -78,6 +78,10 @@ CTransaction::CTransaction(const CMutableTransaction &tx) : nVersion(tx.nVersion
|
||||||
UpdateHash();
|
UpdateHash();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CTransaction::CTransaction(CMutableTransaction &&tx) : nVersion(tx.nVersion), vin(std::move(tx.vin)), vout(std::move(tx.vout)), wit(std::move(tx.wit)), nLockTime(tx.nLockTime) {
|
||||||
|
UpdateHash();
|
||||||
|
}
|
||||||
|
|
||||||
CTransaction& CTransaction::operator=(const CTransaction &tx) {
|
CTransaction& CTransaction::operator=(const CTransaction &tx) {
|
||||||
*const_cast<int*>(&nVersion) = tx.nVersion;
|
*const_cast<int*>(&nVersion) = tx.nVersion;
|
||||||
*const_cast<std::vector<CTxIn>*>(&vin) = tx.vin;
|
*const_cast<std::vector<CTxIn>*>(&vin) = tx.vin;
|
||||||
|
|
|
@ -379,6 +379,7 @@ public:
|
||||||
|
|
||||||
/** Convert a CMutableTransaction into a CTransaction. */
|
/** Convert a CMutableTransaction into a CTransaction. */
|
||||||
CTransaction(const CMutableTransaction &tx);
|
CTransaction(const CMutableTransaction &tx);
|
||||||
|
CTransaction(CMutableTransaction &&tx);
|
||||||
|
|
||||||
CTransaction& operator=(const CTransaction& tx);
|
CTransaction& operator=(const CTransaction& tx);
|
||||||
|
|
||||||
|
@ -392,6 +393,9 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename Stream>
|
||||||
|
CTransaction(deserialize_type, Stream& s) : CTransaction(CMutableTransaction(deserialize, s)) {}
|
||||||
|
|
||||||
bool IsNull() const {
|
bool IsNull() const {
|
||||||
return vin.empty() && vout.empty();
|
return vin.empty() && vout.empty();
|
||||||
}
|
}
|
||||||
|
@ -460,6 +464,11 @@ struct CMutableTransaction
|
||||||
SerializeTransaction(*this, s, ser_action);
|
SerializeTransaction(*this, s, ser_action);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename Stream>
|
||||||
|
CMutableTransaction(deserialize_type, Stream& s) {
|
||||||
|
Unserialize(s);
|
||||||
|
}
|
||||||
|
|
||||||
/** Compute the hash of this CMutableTransaction. This is computed on the
|
/** Compute the hash of this CMutableTransaction. This is computed on the
|
||||||
* fly, as opposed to GetHash() in CTransaction, which uses a cached result.
|
* fly, as opposed to GetHash() in CTransaction, which uses a cached result.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue