mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
blockchain_converter: use the actual blockchain location
This commit is contained in:
parent
0886183568
commit
11129b9ee4
@ -52,20 +52,22 @@ struct fake_core
|
|||||||
|
|
||||||
fake_core() : m_pool(dummy), dummy(m_pool), m_storage(&m_pool)
|
fake_core() : m_pool(dummy), dummy(m_pool), m_storage(&m_pool)
|
||||||
{
|
{
|
||||||
m_pool.init("/home/user/.bitmonero");
|
boost::filesystem::path default_data_path {tools::get_default_data_dir()};
|
||||||
m_storage.init("/home/user/.bitmonero", false);
|
m_pool.init(default_data_path.string());
|
||||||
|
m_storage.init(default_data_path.string(), false);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
fake_core c;
|
fake_core c;
|
||||||
|
boost::filesystem::path default_data_path {tools::get_default_data_dir()};
|
||||||
|
|
||||||
BlockchainDB *blockchain;
|
BlockchainDB *blockchain;
|
||||||
|
|
||||||
blockchain = new BlockchainLMDB();
|
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)
|
for (uint64_t i = 0; i < c.m_storage.get_current_blockchain_height(); ++i)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user