forked from lthn/blockchain
15 lines
800 B
Text
15 lines
800 B
Text
|
|
--------- genesis.h---------
|
||
|
|
#pragma pack(push, 1)
|
||
|
|
struct genesis_tx_raw_data
|
||
|
|
{
|
||
|
|
uint64_t const v[27];
|
||
|
|
uint8_t const r[1];
|
||
|
|
};
|
||
|
|
#pragma pack(pop)
|
||
|
|
extern const genesis_tx_raw_data ggenesis_tx_raw;
|
||
|
|
|
||
|
|
--------- genesis.cpp---------
|
||
|
|
const genesis_tx_raw_data ggenesis_tx_raw = {{
|
||
|
|
0xa080800100000101,0x03018ae3c8e0c8cf,0xdc399d72da4d6bbd,0x4b9bdbb3a022cb85,0x46c8f3e94b46d604,0x48b1afc08bcabd40,0x67c1c73e50160500,0xbcbc01d8d7eaf2e3,0x26baa2848ac5b3eb,0xa15f105c1fcb1ea2,0x74654c7a132b9359,0x6e6567206e616568,0x9480e22073697365,0x7664612065687420,0x6f20656761746e61,0x616e206568742066,0x20666f2065727574,0x74616d726f666e69,0x6e696562206e6f69,0x7420797361652067,0x646165727073206f,0x7261682074756220,0x697473206f742064,0x53202d202e656c66,0x4e206968736f7461,0x156f746f6d616b61,0x000a0e4e9e020b00},
|
||
|
|
{0x00}};
|