forked from lthn/blockchain
32 lines
631 B
C++
32 lines
631 B
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.
|
|
|
|
#pragma once
|
|
#include <string>
|
|
namespace currency
|
|
{
|
|
#pragma pack(push, 1)
|
|
#ifndef TESTNET
|
|
struct genesis_tx_raw_data
|
|
{
|
|
uint64_t const v[161];
|
|
uint8_t const r[7];
|
|
};
|
|
|
|
#else
|
|
struct genesis_tx_raw_data
|
|
{
|
|
uint64_t const v[42];
|
|
uint8_t const r[2];
|
|
};
|
|
#endif
|
|
#pragma pack(pop)
|
|
extern const genesis_tx_raw_data ggenesis_tx_raw;
|
|
}
|
|
|
|
|
|
|
|
|