aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Winget <tewinget@gmail.com>2014-12-06 13:54:00 -0500
committerwarptangent <warptangent@inbox.com>2015-01-04 19:39:41 -0800
commite285ee5aec3f931e34fa490d476d8ddb16007fe6 (patch)
tree0a354c5b490b673f213f2caea583696f8a8635e8 /src
parent215e63b79fe32b6755882c9626a946be7bc48395 (diff)
parent11129b9ee4e1f022ca1ae1c26d8f50e8aa8d3e03 (diff)
downloadmonzero-core-e285ee5aec3f931e34fa490d476d8ddb16007fe6.tar.gz
monzero-core-e285ee5aec3f931e34fa490d476d8ddb16007fe6.tar.xz
monzero-core-e285ee5aec3f931e34fa490d476d8ddb16007fe6.zip
Merge pull request #13 from moneromooo-monero/blockchain
Add lmdb to the cmake gunk, and use actual user directory for the blockchain location
Diffstat (limited to 'src')
-rw-r--r--src/blockchain_converter/blockchain_converter.cpp8
-rw-r--r--src/cryptonote_core/CMakeLists.txt2
2 files changed, 6 insertions, 4 deletions
diff --git a/src/blockchain_converter/blockchain_converter.cpp b/src/blockchain_converter/blockchain_converter.cpp
index b18fd3525..a2b3a375f 100644
--- a/src/blockchain_converter/blockchain_converter.cpp
+++ b/src/blockchain_converter/blockchain_converter.cpp
@@ -52,20 +52,22 @@ struct fake_core
fake_core() : m_pool(dummy), dummy(m_pool), m_storage(&m_pool)
{
- m_pool.init("/home/user/.bitmonero");
- m_storage.init("/home/user/.bitmonero", false);
+ boost::filesystem::path default_data_path {tools::get_default_data_dir()};
+ m_pool.init(default_data_path.string());
+ m_storage.init(default_data_path.string(), false);
}
};
int main(int argc, char* argv[])
{
fake_core c;
+ boost::filesystem::path default_data_path {tools::get_default_data_dir()};
BlockchainDB *blockchain;
blockchain = new BlockchainLMDB();
- blockchain->open("/home/user/.bitmonero");
+ blockchain->open(default_data_path.string());
for (uint64_t i = 0; i < c.m_storage.get_current_blockchain_height(); ++i)
{
diff --git a/src/cryptonote_core/CMakeLists.txt b/src/cryptonote_core/CMakeLists.txt
index 93c3cb51e..fc9cc629b 100644
--- a/src/cryptonote_core/CMakeLists.txt
+++ b/src/cryptonote_core/CMakeLists.txt
@@ -83,5 +83,5 @@ target_link_libraries(cryptonote_core
${Boost_FILESYSTEM_LIBRARY}
${Boost_SYSTEM_LIBRARY}
${Boost_THREAD_LIBRARY}
- ${LMDB_LIBRARIES}
+ ${LMDB_LIBRARY}
${EXTRA_LIBRARIES})