diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-03-17 19:07:09 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2015-03-17 19:07:09 -0400 |
commit | 38c54b79fdf9af7446ea055180340f7e131cde82 (patch) | |
tree | 2abd2c1e18bbc70146761137058e33ea6bc5bd53 /src/blockchain_db/blockchain_db.h | |
parent | Merges #33 (diff) | |
parent | blockchain_export: Add compile-time support for BlockchainDB (diff) | |
download | monero-38c54b79fdf9af7446ea055180340f7e131cde82.tar.xz |
Merges PR #35
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index d2b4a07a7..7b6b55a40 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -326,7 +326,7 @@ public: void show_stats(); // open the db at location <filename>, or create it if there isn't one. - virtual void open(const std::string& filename) = 0; + virtual void open(const std::string& filename, const int db_flags = 0) = 0; // make sure implementation has a create function as well virtual void create(const std::string& filename) = 0; |