Rename CWallet::AddToSpends methods for clarity.

This commit is contained in:
Simon
2018-07-27 16:56:26 -07:00
parent f41bf503e1
commit d5e490d9f2
2 changed files with 11 additions and 6 deletions

View File

@@ -717,8 +717,8 @@ private:
typedef TxSpendMap<uint256> TxNullifiers;
TxNullifiers mapTxNullifiers;
void AddToSpends(const COutPoint& outpoint, const uint256& wtxid);
void AddToSpends(const uint256& nullifier, const uint256& wtxid);
void AddToTransparentSpends(const COutPoint& outpoint, const uint256& wtxid);
void AddToSproutSpends(const uint256& nullifier, const uint256& wtxid);
void AddToSpends(const uint256& wtxid);
public: