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.
73 lines
1.5 KiB
C
73 lines
1.5 KiB
C
9 years ago
|
//
|
||
|
// Created by mwo on 5/11/15.
|
||
|
//
|
||
|
|
||
|
#ifndef XMREG01_MICROCORE_H
|
||
|
#define XMREG01_MICROCORE_H
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#include "monero_headers.h"
|
||
|
#include "tx_details.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 {
|
||
|
|
||
|
tx_memory_pool m_mempool;
|
||
|
Blockchain m_blockchain_storage;
|
||
|
|
||
|
public:
|
||
|
MicroCore();
|
||
|
|
||
|
bool
|
||
|
init(const string& blockchain_path);
|
||
|
|
||
|
Blockchain&
|
||
|
get_core();
|
||
|
|
||
|
bool
|
||
|
get_block_by_height(const uint64_t& height, block& blk);
|
||
|
|
||
|
bool
|
||
|
get_tx(const crypto::hash& tx_hash, transaction& tx);
|
||
|
|
||
|
bool
|
||
|
find_output_in_tx(const transaction& tx,
|
||
|
const public_key& output_pubkey,
|
||
|
tx_out& out,
|
||
|
size_t& output_index);
|
||
|
|
||
|
bool
|
||
|
get_tx_hash_from_output_pubkey(const public_key& output_pubkey,
|
||
|
const uint64_t& block_height,
|
||
|
crypto::hash& tx_hash,
|
||
|
transaction& tx_found);
|
||
|
|
||
|
uint64_t
|
||
|
get_blk_timestamp(uint64_t blk_height);
|
||
|
|
||
|
|
||
|
virtual ~MicroCore();
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
#endif //XMREG01_MICROCORE_H
|