diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-11-20 16:48:06 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-02-02 20:08:51 +0100 |
commit | fa79db2641182b47b4077345d8261d28c4a87bf0 (patch) | |
tree | c6ff08fcad0581a631a82b97835929ffef27b23c /src/test/txvalidationcache_tests.cpp | |
parent | fd13fe7ca01b6104ce591af2b90ee6951ccc5a16 (diff) |
Move maxTxFee out of mempool
Also, remove default values in CMerkleTx::AcceptToMemoryPool()
Diffstat (limited to 'src/test/txvalidationcache_tests.cpp')
-rw-r--r-- | src/test/txvalidationcache_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/txvalidationcache_tests.cpp b/src/test/txvalidationcache_tests.cpp index 66be9d3d5e..c29e30792a 100644 --- a/src/test/txvalidationcache_tests.cpp +++ b/src/test/txvalidationcache_tests.cpp @@ -23,7 +23,7 @@ ToMemPool(CMutableTransaction& tx) LOCK(cs_main); CValidationState state; - return AcceptToMemoryPool(mempool, state, tx, false, NULL, true, false); + return AcceptToMemoryPool(mempool, state, tx, false, NULL, true, 0); } BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup) |