mirror of
https://github.com/monero-project/monero.git
synced 2024-12-16 05:16:32 +02:00
ac5674524a
This reverts commit79d46c4d55
, reversing changes made toc9fc61dbb5
.
17 lines
289 B
C
17 lines
289 B
C
#ifndef SRC_BLOCKS_BLOCKS_H_
|
|
#define SRC_BLOCKS_BLOCKS_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const unsigned char *get_blocks_dat_start(int testnet, int stagenet);
|
|
size_t get_blocks_dat_size(int testnet, int stagenet);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* SRC_BLOCKS_BLOCKS_H_ */
|