diff options
author | Matt Corallo <git@bluematt.me> | 2016-12-04 18:53:26 -0800 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2017-01-09 14:15:18 -0500 |
commit | edded808fc4eee94c178e1779b90d1c87a08c23a (patch) | |
tree | a12312fa8616361dca5ca877a4d8e580892c19bc /src/test | |
parent | c73554042886fb63fb48edf29cf827951edde341 (diff) |
Make ATMP optionally return the CTransactionRefs it replaced
Diffstat (limited to 'src/test')
-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 acccaee98c..c5367208ba 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, MakeTransactionRef(tx), false, NULL, true, 0); + return AcceptToMemoryPool(mempool, state, MakeTransactionRef(tx), false, NULL, NULL, true, 0); } BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup) |