| 24 | BOOST_AUTO_TEST_SUITE(tx_validationcache_tests) |
| 25 | |
| 26 | static bool |
| 27 | ToMemPool(const CMutableTransaction& tx) |
| 28 | { |
| 29 | LOCK(cs_main); |
| 30 | |
| 31 | CValidationState state; |
| 32 | return AcceptToMemoryPool(mempool, state, MakeTransactionRef(tx), nullptr /* pfMissingInputs */, |
| 33 | nullptr /* plTxnReplaced */, true /* bypass_limits */, 0 /* nAbsurdFee */); |
| 34 | } |
| 35 | |
| 36 | BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup) |
| 37 | { |
no test coverage detected