You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.8 KiB
C++
94 lines
1.8 KiB
C++
//
|
|
// Created by mwo on 5/11/15.
|
|
//
|
|
|
|
#ifndef XMREG01_MICROCORE_H
|
|
#define XMREG01_MICROCORE_H
|
|
|
|
#include <iostream>
|
|
|
|
#include "monero_headers.h"
|
|
#include "tools.h"
|
|
|
|
namespace xmreg
|
|
{
|
|
using namespace cryptonote;
|
|
using namespace crypto;
|
|
using namespace std;
|
|
|
|
/**
|
|
* Micro version of cryptonode::core class
|
|
* Micro version of constructor,
|
|
* init and destructor are implemted.
|
|
*
|
|
* Just enough to read the blockchain
|
|
* database for use in the example.
|
|
*/
|
|
class MicroCore {
|
|
|
|
string blockchain_path;
|
|
|
|
tx_memory_pool m_mempool;
|
|
Blockchain m_blockchain_storage;
|
|
|
|
hw::device* m_device;
|
|
|
|
network_type nettype;
|
|
|
|
public:
|
|
MicroCore();
|
|
|
|
bool
|
|
init(const string& _blockchain_path, network_type nt);
|
|
|
|
Blockchain&
|
|
get_core();
|
|
|
|
tx_memory_pool&
|
|
get_mempool();
|
|
|
|
bool
|
|
get_block_by_height(const uint64_t& height, block& blk);
|
|
|
|
bool
|
|
get_tx(const crypto::hash& tx_hash, transaction& tx);
|
|
|
|
bool
|
|
get_tx(const string& tx_hash, transaction& tx);
|
|
|
|
bool
|
|
find_output_in_tx(const transaction& tx,
|
|
const public_key& output_pubkey,
|
|
tx_out& out,
|
|
size_t& output_index);
|
|
|
|
uint64_t
|
|
get_blk_timestamp(uint64_t blk_height);
|
|
|
|
bool
|
|
get_block_complete_entry(block const& b, block_complete_entry& bce);
|
|
|
|
string
|
|
get_blkchain_path();
|
|
|
|
hw::device* const
|
|
get_device() const;
|
|
|
|
virtual ~MicroCore();
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
init_blockchain(const string& path,
|
|
MicroCore& mcore,
|
|
Blockchain*& core_storage,
|
|
network_type nt);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //XMREG01_MICROCORE_H
|