diff options
| author | Pieter Wuille <[email protected]> | 2014-06-09 10:02:00 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-06-22 00:06:17 +0200 |
| commit | d38da59bf68fbb37535e2579bfb7355a16baed0e (patch) | |
| tree | fb9821f60f32fa8ea0564d1149fa37ab396ead97 /src/wallet.h | |
| parent | Add CMutableTransaction and make CTransaction immutable. (diff) | |
| download | discoin-d38da59bf68fbb37535e2579bfb7355a16baed0e.tar.xz discoin-d38da59bf68fbb37535e2579bfb7355a16baed0e.zip | |
Code simplifications after CTransaction::GetHash() caching
Diffstat (limited to 'src/wallet.h')
| -rw-r--r-- | src/wallet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet.h b/src/wallet.h index 7df656fc2..424799b14 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -244,8 +244,8 @@ public: void MarkDirty(); bool AddToWallet(const CWalletTx& wtxIn, bool fFromLoadWallet=false); - void SyncTransaction(const uint256 &hash, const CTransaction& tx, const CBlock* pblock); - bool AddToWalletIfInvolvingMe(const uint256 &hash, const CTransaction& tx, const CBlock* pblock, bool fUpdate); + void SyncTransaction(const CTransaction& tx, const CBlock* pblock); + bool AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate); void EraseFromWallet(const uint256 &hash); int ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate = false); void ReacceptWalletTransactions(); |