diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-10-19 18:42:14 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2013-10-26 14:51:47 +0200 |
commit | 722fa283d04dfe9c70418e69535a08eea06b4377 (patch) | |
tree | c917f101a743cebd52c17ac777d47ed44c35c1fa /src/main.cpp | |
parent | 00588c3fac4822d42ffde46ca55c029a74c378ee (diff) |
Break dependency of init on wallet.
This required some code movement (what was CWalletTx::AcceptToMemoryPool
doing in main?), and adding a few explicit includes that used to be
implicit through init.h.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/main.cpp b/src/main.cpp index b84c53ade1..072d0967f2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1054,27 +1054,6 @@ bool CMerkleTx::AcceptToMemoryPool(bool fLimitFree) } - -bool CWalletTx::AcceptWalletTransaction() -{ - { - LOCK(mempool.cs); - // Add previous supporting transactions first - BOOST_FOREACH(CMerkleTx& tx, vtxPrev) - { - if (!tx.IsCoinBase()) - { - uint256 hash = tx.GetHash(); - if (!mempool.exists(hash) && pcoinsTip->HaveCoins(hash)) - tx.AcceptToMemoryPool(false); - } - } - return AcceptToMemoryPool(false); - } - return false; -} - - // Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock bool GetTransaction(const uint256 &hash, CTransaction &txOut, uint256 &hashBlock, bool fAllowSlow) { |