diff options
author | Howard Chu <hyc@symas.com> | 2017-08-19 15:27:13 +0100 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2017-08-19 18:11:38 +0100 |
commit | 4c7f8ac04f8693c321f4143e61e7511f200cab1d (patch) | |
tree | 2acc8e82b7969f4ae486fdc7a60cdb5ad21073e1 /src/blockchain_db/blockchain_db.h | |
parent | Merge pull request #2303 (diff) | |
download | monero-4c7f8ac04f8693c321f4143e61e7511f200cab1d.tar.xz |
DB cleanup
Hide LMDB-specific stuff behind blockchain_db.h. Nobody besides blockchain_db.cpp
should ever be including DB-specific headers any more.
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index 27e63801d..3efb8c3c3 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -145,6 +145,12 @@ struct txpool_tx_meta_t uint8_t padding[77]; // till 192 bytes }; +#define DBF_SAFE 1 +#define DBF_FAST 2 +#define DBF_FASTEST 4 +#define DBF_RDONLY 8 +#define DBF_SALVAGE 0x10 + /*********************************** * Exception Definitions ***********************************/ @@ -1491,6 +1497,7 @@ public: }; // class BlockchainDB +BlockchainDB *new_db(const std::string& db_type); } // namespace cryptonote |