mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
blockchain_converter: only call data path function once
This commit is contained in:
parent
1860658eec
commit
2b9f737872
1 changed files with 4 additions and 5 deletions
|
@ -50,18 +50,17 @@ struct fake_core
|
||||||
blockchain_storage m_storage;
|
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(path.string());
|
||||||
m_pool.init(default_data_path.string());
|
m_storage.init(path.string(), false);
|
||||||
m_storage.init(default_data_path.string(), false);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
int main(int argc, char* argv[])
|
int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
fake_core c;
|
|
||||||
boost::filesystem::path default_data_path {tools::get_default_data_dir()};
|
boost::filesystem::path default_data_path {tools::get_default_data_dir()};
|
||||||
|
fake_core c(default_data_path);
|
||||||
|
|
||||||
BlockchainDB *blockchain;
|
BlockchainDB *blockchain;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue