aboutsummaryrefslogtreecommitdiff
path: root/src/index/blockfilterindex.h
diff options
context:
space:
mode:
authorstickies-v <stickies-v@protonmail.com>2022-08-31 16:43:58 +0100
committerstickies-v <stickies-v@protonmail.com>2022-09-13 19:10:41 +0100
commit200d84d5681918523d982b9ddf60d1127edcb448 (patch)
tree2e48f3415525967d344c6ab097a0aa78a4594279 /src/index/blockfilterindex.h
parent97f5b20c12ca6ccf89d7720a5d41eaf4cda1b695 (diff)
downloadbitcoin-200d84d5681918523d982b9ddf60d1127edcb448.tar.xz
refactor: use std::string for index names
Diffstat (limited to 'src/index/blockfilterindex.h')
-rw-r--r--src/index/blockfilterindex.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/index/blockfilterindex.h b/src/index/blockfilterindex.h
index a31f7e460e..5af4671091 100644
--- a/src/index/blockfilterindex.h
+++ b/src/index/blockfilterindex.h
@@ -26,7 +26,6 @@ class BlockFilterIndex final : public BaseIndex
{
private:
BlockFilterType m_filter_type;
- std::string m_name;
std::unique_ptr<BaseIndex::DB> m_db;
FlatFilePos m_next_filter_pos;
@@ -52,8 +51,6 @@ protected:
BaseIndex::DB& GetDB() const LIFETIMEBOUND override { return *m_db; }
- const char* GetName() const LIFETIMEBOUND override { return m_name.c_str(); }
-
public:
/** Constructs the index, which becomes available to be queried. */
explicit BlockFilterIndex(std::unique_ptr<interfaces::Chain> chain, BlockFilterType filter_type,