aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2023-09-01 21:36:54 +0200
committerTheCharlatan <seb.kung@gmail.com>2023-11-10 16:44:44 +0100
commit55b0939cab49d50ca5bc59105b669e379d5e7f6c (patch)
treeffb1ab68304a308061af54a4a9e1cd13bca3c35d /src/txmempool.h
parenta03aef9cec35b0d03aa63d7e8093f0420cd4b40b (diff)
downloadbitcoin-55b0939cab49d50ca5bc59105b669e379d5e7f6c.tar.xz
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/txmempool.h')
-rw-r--r--src/txmempool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index fa1c62217b..3b0b8cf519 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -392,7 +392,7 @@ public:
indexed_transaction_set mapTx GUARDED_BY(cs);
using txiter = indexed_transaction_set::nth_index<0>::type::const_iterator;
- std::vector<CTransactionRef> vTxHashes GUARDED_BY(cs); //!< All transactions in mapTx, in random order
+ std::vector<CTransactionRef> txns_randomized GUARDED_BY(cs); //!< All transactions in mapTx, in random order
typedef std::set<txiter, CompareIteratorByHash> setEntries;