aboutsummaryrefslogtreecommitdiff
path: root/src/blockchain_db/lmdb/db_lmdb.h
diff options
context:
space:
mode:
authorHoward Chu <hyc@symas.com>2017-02-18 18:46:26 +0000
committerHoward Chu <hyc@symas.com>2017-02-18 21:01:24 +0000
commitbf1348b7e2b2c72a6d40b23567afaa46b53e6cb7 (patch)
tree938f8bfe7648cf2be1f0681f49b18ff0ff37d518 /src/blockchain_db/lmdb/db_lmdb.h
parentAdd a few read txns to streamline (diff)
downloadmonero-bf1348b7e2b2c72a6d40b23567afaa46b53e6cb7.tar.xz
Can't cache num_txs or num_outputs either
Same reason as 3ff54bdd7a8b5e08e4e8ac17b7fff23ad3a82312
Diffstat (limited to 'src/blockchain_db/lmdb/db_lmdb.h')
-rw-r--r--src/blockchain_db/lmdb/db_lmdb.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.h b/src/blockchain_db/lmdb/db_lmdb.h
index 57c2a5e39..b4e3c7174 100644
--- a/src/blockchain_db/lmdb/db_lmdb.h
+++ b/src/blockchain_db/lmdb/db_lmdb.h
@@ -312,6 +312,9 @@ private:
virtual void remove_spent_key(const crypto::key_image& k_image);
+ uint64_t num_txs() const;
+ uint64_t num_outputs() const;
+
// Hard fork
virtual void set_hard_fork_version(uint64_t height, uint8_t version);
virtual uint8_t get_hard_fork_version(uint64_t height) const;
@@ -369,8 +372,6 @@ private:
MDB_dbi m_properties;
- uint64_t m_num_txs;
- uint64_t m_num_outputs;
mutable uint64_t m_cum_size; // used in batch size estimation
mutable unsigned int m_cum_count;
std::string m_folder;