From newest bitcoin/litecoin source,
So I testing make new genesis block, based on new blockchain.
So I changed at 'chainparams.cpp'
pchMessageStart[0~4] value to random value for start new blockchain, (is this right?)
and also I changed following line's
consensus.hashGenesisBlock == uint256S("0x............");
genesis.hashMerkleRoot == uint256S("0x.....");
to value of mine. (knowing by printf code added above these lines)
After compile ('make'), run by ./bitcoind
but error says 'A fatal internal error occured, see debug.log file'
and debug.log says at end,
ReadBlockFromDisk : Errorrs in block header at CBlockDiskPos(nFile =0, nPos =
Maybe I need to revise more elsewhere to start new blockchain?
How to fix?
Thanks.