Newer
Older
* Dmitriy A. Gearasimov <gerasimov.dmitriy@demlabs.net>
* Kelvin Project https://github.com/kelvinblockchain
* Copyright (c) 2017-2018
* All rights reserved.
This file is part of DAP (Deus Applications Prototypes) the open source project
DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DAP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with any DAP based project. If not, see <http://www.gnu.org/licenses/>.
*/
#include "dap_chain_block.h"
dap_chain_block_cache_t * block_cache_first; // Mapped area start
dap_chain_block_cache_t * block_cache_last; // Last block in mapped area
void * _internal;
void * _inhertor;
} dap_chain_t;
int dap_chain_init();
void dap_chain_deinit();
//dap_chain_t * dap_chain_open(const char * a_file_storage,const char * a_file_cache);
void dap_chain_remap(dap_chain_t * a_chain, size_t a_offset);
void dap_chain_save(dap_chain_t * a_chain);
void dap_chain_info_dump_log(dap_chain_t * a_chain);
int dap_chain_files_open();
void dap_chain_block_write (dap_chain_block_cache_t *l_block_cache);
void dap_chain_update (dap_chain_block_cache_t *l_block_cache);
void dap_chain_count_new_block(dap_chain_block_cache_t *l_block_cache);
void dap_chain_show_hash_blocks_file(FILE *a_hash_blocks_file);
dap_chain_block_t* dap_chain_get_last_mined_block(bool a_is_gold);
int dap_chain_get_mined_block_count(bool a_is_gold);
dap_chain_block_cache_t* dap_chain_allocate_next_block(dap_chain_t * a_chain);
void dap_chain_close(dap_chain_t * a_chain);