diff options
author | Jeff Garzik <jeff@garzik.org> | 2012-04-13 17:34:22 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-04-15 14:43:19 -0400 |
commit | d01903e7511c143f8844bd83da884e7c9d25241e (patch) | |
tree | 9f7e40e055223bbfef922d9a8b719a87b2c24894 /src/main.h | |
parent | 8e45ed66dde5d5eb5fde0fc1eba64b26bd48bfb0 (diff) |
CTxMemPool: encapsulate AcceptToMemoryPool
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h index bf24944ce2..29bd358c5c 100644 --- a/src/main.h +++ b/src/main.h @@ -1611,6 +1611,8 @@ public: std::map<uint256, CTransaction> mapTx; std::map<COutPoint, CInPoint> mapNextTx; + bool accept(CTxDB& txdb, CTransaction &tx, + bool fCheckInputs, bool* pfMissingInputs); bool addUnchecked(CTransaction &tx); bool remove(CTransaction &tx); |