forked from lthn/blockchain
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
// Copyright (c) 2014-2018 Zano Project
|
|
// Copyright (c) 2014-2018 Zano Project
|
|
// Copyright (c) 2014-2018 The Louisdor Project
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "genesis_acc.h"
|
|
|
|
|
|
namespace currency
|
|
{
|
|
#ifndef TESTNET
|
|
const std::string ggenesis_tx_pub_key_str = "d255c9a9248baf34e94ee32b3a4b513f76e71024445b52b62ab46f66834d6d25";
|
|
const crypto::public_key ggenesis_tx_pub_key = epee::string_tools::parse_tpod_from_hex_string<crypto::public_key>(ggenesis_tx_pub_key_str);
|
|
extern const genesis_tx_dictionary_entry ggenesis_dict[1];
|
|
const genesis_tx_dictionary_entry ggenesis_dict[1] = {
|
|
{1056117391700764468ULL,0}
|
|
};
|
|
#else
|
|
const std::string ggenesis_tx_pub_key_str = "d255c9a9248baf34e94ee32b3a4b513f76e71024445b52b62ab46f66834d6d25";
|
|
const crypto::public_key ggenesis_tx_pub_key = epee::string_tools::parse_tpod_from_hex_string<crypto::public_key>(ggenesis_tx_pub_key_str);
|
|
extern const genesis_tx_dictionary_entry ggenesis_dict[1];
|
|
const genesis_tx_dictionary_entry ggenesis_dict[1] = {
|
|
{1056117391700764468ULL,0}
|
|
};
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|