Skip to content

Commit 3d3d8ae

Browse files
author
MarcoFalke
committed
Merge #13404: [tests] speed up of tx_validationcache_tests by reusing of CTransaction.
ebebedc speed up of tx_validationcache_tests by reusing of CTransaction. ([email protected]) Pull request description: The code was converting CMutableTransaction to CTransaction multiple times, which implies recalculating the hash multiple times. This commit fixes this by reusing a single CTransaction. Run-time results: ``` Before: 6.7s After: 5.5s -------------- Saved: 1.2s ``` This PR was split from #13050. Also, see #10026. Tree-SHA512: 61fb81972a08299085a7d3d0060485b265aefc7a4f82ab548e5f94371c8643cfb97bf0ef34f4e1211bf853d0217fa1c3338e4117f36fda1b37d203f690e86d60
2 parents f8bcef3 + ebebedc commit 3d3d8ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/txvalidationcache_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ BOOST_FIXTURE_TEST_CASE(tx_mempool_block_doublespend, TestChain100Setup)
102102
// should fail.
103103
// Capture this interaction with the upgraded_nop argument: set it when evaluating
104104
// any script flag that is implemented as an upgraded NOP code.
105-
static void ValidateCheckInputsForAllFlags(CMutableTransaction &tx, uint32_t failing_flags, bool add_to_cache)
105+
static void ValidateCheckInputsForAllFlags(const CTransaction &tx, uint32_t failing_flags, bool add_to_cache)
106106
{
107107
PrecomputedTransactionData txdata(tx);
108108
// If we add many more flags, this loop can get too expensive, but we can

0 commit comments

Comments
 (0)