diff options
author | Matt Corallo <git@bluematt.me> | 2013-06-13 22:28:03 +0200 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2013-06-13 22:28:03 +0200 |
commit | b1f15b218be8dfd1d2dbd375d469794bb7326748 (patch) | |
tree | 352477d43c623219e262d3e9db5149ab01e1ba76 /src/main.h | |
parent | d1020b780a1493c6a709f70756b2af54a7126f40 (diff) |
Remove broken option to skip input checking for wallet txn.
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.h b/src/main.h index f20fad98a4..87f1dbfa8f 100644 --- a/src/main.h +++ b/src/main.h @@ -478,7 +478,7 @@ public: int GetDepthInMainChain() const { CBlockIndex *pindexRet; return GetDepthInMainChain(pindexRet); } bool IsInMainChain() const { return GetDepthInMainChain() > 0; } int GetBlocksToMaturity() const; - bool AcceptToMemoryPool(bool fCheckInputs=true, bool fLimitFree=true); + bool AcceptToMemoryPool(bool fLimitFree=true); }; @@ -1334,7 +1334,7 @@ public: std::map<uint256, CTransaction> mapTx; std::map<COutPoint, CInPoint> mapNextTx; - bool accept(CValidationState &state, CTransaction &tx, bool fCheckInputs, bool fLimitFree, bool* pfMissingInputs); + bool accept(CValidationState &state, CTransaction &tx, bool fLimitFree, bool* pfMissingInputs); bool addUnchecked(const uint256& hash, CTransaction &tx); bool remove(const CTransaction &tx, bool fRecursive = false); bool removeConflicts(const CTransaction &tx); |