diff options
author | warptangent <warptangent@tutanota.com> | 2016-03-04 11:56:36 -0800 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2016-04-05 20:54:06 +0100 |
commit | 9aadedb1d0eb4f922b33edfa0ede1f4d1ac128d1 (patch) | |
tree | 49f4a44ed76b3f176b73fbc353edb4d618e7bc79 /src/blockchain_db/lmdb/db_lmdb.h | |
parent | Schema update: tx_indices - yet less indirection (diff) | |
download | monero-9aadedb1d0eb4f922b33edfa0ede1f4d1ac128d1.tar.xz |
Schema update: tx_indices - consolidate the tx subdbs from 5 to 3
Diffstat (limited to 'src/blockchain_db/lmdb/db_lmdb.h')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.h b/src/blockchain_db/lmdb/db_lmdb.h index e60103712..0eda3bc4d 100644 --- a/src/blockchain_db/lmdb/db_lmdb.h +++ b/src/blockchain_db/lmdb/db_lmdb.h @@ -52,8 +52,6 @@ typedef struct mdb_txn_cursors MDB_cursor *m_txc_txs; MDB_cursor *m_txc_tx_indices; - MDB_cursor *m_txc_tx_heights; - MDB_cursor *m_txc_tx_unlocks; MDB_cursor *m_txc_tx_outputs; MDB_cursor *m_txc_spent_keys; @@ -70,8 +68,6 @@ typedef struct mdb_txn_cursors #define m_cur_output_keys m_cursors->m_txc_output_keys #define m_cur_txs m_cursors->m_txc_txs #define m_cur_tx_indices m_cursors->m_txc_tx_indices -#define m_cur_tx_heights m_cursors->m_txc_tx_heights -#define m_cur_tx_unlocks m_cursors->m_txc_tx_unlocks #define m_cur_tx_outputs m_cursors->m_txc_tx_outputs #define m_cur_spent_keys m_cursors->m_txc_spent_keys #define m_cur_hf_versions m_cursors->m_txc_hf_versions @@ -88,8 +84,6 @@ typedef struct mdb_rflags bool m_rf_output_keys; bool m_rf_txs; bool m_rf_tx_indices; - bool m_rf_tx_heights; - bool m_rf_tx_unlocks; bool m_rf_tx_outputs; bool m_rf_spent_keys; bool m_rf_hf_versions; @@ -368,8 +362,6 @@ private: MDB_dbi m_txs; MDB_dbi m_tx_indices; - MDB_dbi m_tx_unlocks; - MDB_dbi m_tx_heights; MDB_dbi m_tx_outputs; MDB_dbi m_output_txs; |