Skip to content

Commit

Permalink
blockchain_converter: only call data path function once
Browse files Browse the repository at this point in the history
  • Loading branch information
moneromooo-monero authored and warptangent committed Jan 5, 2015
1 parent 1860658 commit 2b9f737
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/blockchain_converter/blockchain_converter.cpp
Expand Up @@ -50,18 +50,17 @@ struct fake_core
blockchain_storage m_storage;


fake_core() : m_pool(dummy), dummy(m_pool), m_storage(&m_pool)
fake_core(const boost::filesystem::path &path) : m_pool(dummy), dummy(m_pool), m_storage(&m_pool)
{
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);
m_pool.init(path.string());
m_storage.init(path.string(), false);
}
};

int main(int argc, char* argv[])
{
fake_core c;
boost::filesystem::path default_data_path {tools::get_default_data_dir()};
fake_core c(default_data_path);

BlockchainDB *blockchain;

Expand Down

0 comments on commit 2b9f737

Please sign in to comment.