diff options
author | TheCharlatan <seb.kung@gmail.com> | 2023-09-01 21:36:54 +0200 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-11-10 16:44:44 +0100 |
commit | 55b0939cab49d50ca5bc59105b669e379d5e7f6c (patch) | |
tree | ffb1ab68304a308061af54a4a9e1cd13bca3c35d /src/test | |
parent | a03aef9cec35b0d03aa63d7e8093f0420cd4b40b (diff) |
scripted-diff: rename vTxHashes to txns_randomized
-BEGIN VERIFY SCRIPT-
git grep -l "vTxHashesIdx" src | xargs sed -i "s/vTxHashesIdx/idx_randomized/g"
git grep -l "vTxHashes" src | xargs sed -i "s/vTxHashes/txns_randomized/g"
-END VERIFY SCRIPT-
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/blockencodings_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/blockencodings_tests.cpp b/src/test/blockencodings_tests.cpp index 33894fd076..e4ef019daf 100644 --- a/src/test/blockencodings_tests.cpp +++ b/src/test/blockencodings_tests.cpp @@ -51,7 +51,7 @@ static CBlock BuildBlockTestCase() { } // Number of shared use_counts we expect for a tx we haven't touched -// (block + mempool entry + mempool vTxHashes + our copy from the GetSharedTx call) +// (block + mempool entry + mempool txns_randomized + our copy from the GetSharedTx call) constexpr long SHARED_TX_OFFSET{4}; BOOST_AUTO_TEST_CASE(SimpleRoundTripTest) |