Skip to content

Commit

Permalink
~ didn't work, need hard path. debug print.
Browse files Browse the repository at this point in the history
  • Loading branch information
tewinget authored and warptangent committed Jan 5, 2015
1 parent 4af0918 commit 9455e0c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/blockchain_converter/blockchain_converter.cpp
Expand Up @@ -38,6 +38,7 @@
#include "cryptonote_core/blockchain.h"
#include "cryptonote_core/BlockchainDB_impl/db_lmdb.h"
#include "cryptonote_core/tx_pool.h"
#include <iostream>

using namespace cryptonote;

Expand All @@ -51,8 +52,8 @@ struct fake_core

fake_core() : m_pool(dummy), dummy(m_pool), m_storage(&m_pool)
{
m_pool.init("~/.bitmonero");
m_storage.init("~/.bitmonero", false);
m_pool.init("/home/user/.bitmonero");
m_storage.init("/home/user/.bitmonero", false);
}
};

Expand All @@ -64,10 +65,11 @@ int main(int argc, char* argv[])

blockchain = new BlockchainLMDB();

blockchain->open("~/.bitmonero");
blockchain->open("/home/user/.bitmonero");

for (uint64_t i = 0; i < c.m_storage.get_current_blockchain_height(); ++i)
{
if (i % 10 == 0) std::cout << "block " << i << std::endl;
block b = c.m_storage.get_block(i);
size_t bsize = c.m_storage.get_block_size(i);
difficulty_type bdiff = c.m_storage.get_block_cumulative_difficulty(i);
Expand Down

0 comments on commit 9455e0c

Please sign in to comment.