diff options
| author | MarcoFalke <[email protected]> | 2018-05-04 17:38:49 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-05-04 17:40:52 -0400 |
| commit | faab55fbb17f2ea5080bf02bc59eeef5ca746f07 (patch) | |
| tree | 6f1c03fd468c4f63ab681af33c47370cb9179b95 /src/test/txvalidationcache_tests.cpp | |
| parent | Merge #13163: Make it clear which functions that are intended to be translati... (diff) | |
| download | discoin-faab55fbb17f2ea5080bf02bc59eeef5ca746f07.tar.xz discoin-faab55fbb17f2ea5080bf02bc59eeef5ca746f07.zip | |
Make CMutableTransaction constructor explicit
Silently converting to a CMutableTransaction will drop all caches
and should thus be done explicitly
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 eb23ba5ad..06497667c 100644 --- a/src/test/txvalidationcache_tests.cpp +++ b/src/test/txvalidationcache_tests.cpp @@ -24,7 +24,7 @@ bool CheckInputs(const CTransaction& tx, CValidationState &state, const CCoinsVi BOOST_AUTO_TEST_SUITE(tx_validationcache_tests) static bool -ToMemPool(CMutableTransaction& tx) +ToMemPool(const CMutableTransaction& tx) { LOCK(cs_main); |