diff options
author | Fabian Jahr <fjahr@protonmail.com> | 2022-01-23 01:55:14 +0100 |
---|---|---|
committer | Fabian Jahr <fjahr@protonmail.com> | 2022-02-17 00:34:37 +0100 |
commit | 38ed58b8503f2809e555036f4e98ff9b40a950c8 (patch) | |
tree | 745501d436d7e6b6ea11a0cf799bd667abef95c4 /src | |
parent | 1e8aa02ec5cc2819c67ef40a7573c4b23a4c11cc (diff) |
index: remove txindex references from base index
Diffstat (limited to 'src')
-rw-r--r-- | src/index/base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index/base.h b/src/index/base.h index 66149686f0..c4a8215bc4 100644 --- a/src/index/base.h +++ b/src/index/base.h @@ -40,10 +40,10 @@ protected: DB(const fs::path& path, size_t n_cache_size, bool f_memory = false, bool f_wipe = false, bool f_obfuscate = false); - /// Read block locator of the chain that the txindex is in sync with. + /// Read block locator of the chain that the index is in sync with. bool ReadBestBlock(CBlockLocator& locator) const; - /// Write block locator of the chain that the txindex is in sync with. + /// Write block locator of the chain that the index is in sync with. void WriteBestBlock(CDBBatch& batch, const CBlockLocator& locator); }; |