~ didn't work, need hard path. debug print.

This commit is contained in:
Thomas Winget 2014-11-01 21:13:15 -04:00 committed by warptangent
parent 4af0918501
commit 9455e0cd58

View file

@ -38,6 +38,7 @@
#include "cryptonote_core/blockchain.h" #include "cryptonote_core/blockchain.h"
#include "cryptonote_core/BlockchainDB_impl/db_lmdb.h" #include "cryptonote_core/BlockchainDB_impl/db_lmdb.h"
#include "cryptonote_core/tx_pool.h" #include "cryptonote_core/tx_pool.h"
#include <iostream>
using namespace cryptonote; using namespace cryptonote;
@ -51,8 +52,8 @@ 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("~/.bitmonero"); m_pool.init("/home/user/.bitmonero");
m_storage.init("~/.bitmonero", false); m_storage.init("/home/user/.bitmonero", false);
} }
}; };
@ -64,10 +65,11 @@ int main(int argc, char* argv[])
blockchain = new BlockchainLMDB(); 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) 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); block b = c.m_storage.get_block(i);
size_t bsize = c.m_storage.get_block_size(i); size_t bsize = c.m_storage.get_block_size(i);
difficulty_type bdiff = c.m_storage.get_block_cumulative_difficulty(i); difficulty_type bdiff = c.m_storage.get_block_cumulative_difficulty(i);