Use joinsplit_sig_t in more places.
This commit is contained in:
@@ -384,7 +384,7 @@ struct CMutableTransaction
|
|||||||
uint32_t nLockTime;
|
uint32_t nLockTime;
|
||||||
std::vector<CPourTx> vpour;
|
std::vector<CPourTx> vpour;
|
||||||
uint256 joinSplitPubKey;
|
uint256 joinSplitPubKey;
|
||||||
boost::array<unsigned char, 64> joinSplitSig;
|
CTransaction::joinsplit_sig_t joinSplitSig;
|
||||||
|
|
||||||
CMutableTransaction();
|
CMutableTransaction();
|
||||||
CMutableTransaction(const CTransaction& tx);
|
CMutableTransaction(const CTransaction& tx);
|
||||||
|
|||||||
@@ -1084,7 +1084,7 @@ public:
|
|||||||
if (txTo.vpour.size() > 0) {
|
if (txTo.vpour.size() > 0) {
|
||||||
::Serialize(s, txTo.joinSplitPubKey, nType, nVersion);
|
::Serialize(s, txTo.joinSplitPubKey, nType, nVersion);
|
||||||
|
|
||||||
boost::array<unsigned char, 64> nullSig = {};
|
CTransaction::joinsplit_sig_t nullSig = {};
|
||||||
::Serialize(s, nullSig, nType, nVersion);
|
::Serialize(s, nullSig, nType, nVersion);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user