diff options
author | xiphon <xiphon@protonmail.com> | 2018-10-09 12:33:39 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2018-10-22 01:12:00 +0300 |
commit | fd62b6e79f87503bf27a3c8709aaf9cc4ae36146 (patch) | |
tree | a68bf9c14fd49d40f24fb92e49395c0f77e8a988 /src/blocks/blocks.h | |
parent | Merge pull request #4532 (diff) | |
download | monero-fd62b6e79f87503bf27a3c8709aaf9cc4ae36146.tar.xz |
blocks: use auto-generated .c files instead of 'LD -r -b binary'
Diffstat (limited to 'src/blocks/blocks.h')
-rw-r--r-- | src/blocks/blocks.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/blocks/blocks.h b/src/blocks/blocks.h index ec683f47e..14e391319 100644 --- a/src/blocks/blocks.h +++ b/src/blocks/blocks.h @@ -1,16 +1,12 @@ #ifndef SRC_BLOCKS_BLOCKS_H_ #define SRC_BLOCKS_BLOCKS_H_ -#ifdef __cplusplus -extern "C" { -#endif +#include "cryptonote_config.h" +#include "span.h" -const unsigned char *get_blocks_dat_start(int testnet, int stagenet); -size_t get_blocks_dat_size(int testnet, int stagenet); - -#ifdef __cplusplus +namespace blocks +{ + const epee::span<const unsigned char> GetCheckpointsData(cryptonote::network_type network); } -#endif - #endif /* SRC_BLOCKS_BLOCKS_H_ */ |