mirror of
https://github.com/oxen-io/oxen-core.git
synced 2023-12-14 02:22:56 +01:00
11 lines
430 B
C++
11 lines
430 B
C++
#include "blocks/blocks.h"
|
|
|
|
#include <string_view>
|
|
|
|
namespace blocks {
|
|
|
|
template<> std::string_view checkpoint_data<cryptonote::network_type::MAINNET>() { return "@mainnet_blocks_data@"sv; }
|
|
template<> std::string_view checkpoint_data<cryptonote::network_type::DEVNET>() { return "@devnet_blocks_data@"sv; }
|
|
template<> std::string_view checkpoint_data<cryptonote::network_type::TESTNET>() { return "@testnet_blocks_data@"sv; }
|
|
|
|
}
|