aboutsummaryrefslogtreecommitdiff
path: root/src/index/blockfilterindex.cpp
diff options
context:
space:
mode:
authorZero <zero1729@protonmail.com>2020-09-22 14:38:54 +0100
committerZero <zero1729@protonmail.com>2020-09-22 14:41:15 +0100
commit819d03b932134ee91df3b0fe98a481a331ce57bf (patch)
treecd357cb1493d8b32de23d83bbd4b8701665ef8cf /src/index/blockfilterindex.cpp
parented69213c2b2a99023bdee5168614cb8b71990f5f (diff)
downloadbitcoin-819d03b932134ee91df3b0fe98a481a331ce57bf.tar.xz
refactor: took out unused member functions
Took out the following unused member functions: - 'DBHeightKey()' - 'GetType()' - 'operator='
Diffstat (limited to 'src/index/blockfilterindex.cpp')
-rw-r--r--src/index/blockfilterindex.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/index/blockfilterindex.cpp b/src/index/blockfilterindex.cpp
index 65a5f03a8e..27785fdeb1 100644
--- a/src/index/blockfilterindex.cpp
+++ b/src/index/blockfilterindex.cpp
@@ -51,7 +51,6 @@ struct DBVal {
struct DBHeightKey {
int height;
- DBHeightKey() : height(0) {}
explicit DBHeightKey(int height_in) : height(height_in) {}
template<typename Stream>