change
static MapCheckpoints mapCheckpoints =
boost::assign::map_list_of
( 1500, uint256("0x841a2965955dd288cfa707a755d05a54e45f8bd476835ec9af4402a2b59a2967"))
;
static const CCheckpointData data = {
&mapCheckpoints,
1402691751, // * UNIX timestamp of last checkpoint block
4404988, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
10000.0 // * estimated number of transactions per day after checkpoint
};
to
static MapCheckpoints mapCheckpoints =
boost::assign::map_list_of
( 0, uint256("0x*********Insert Genesis Hash Here**********"))
;
static const CCheckpointData data = {
&mapCheckpoints,
********Inserttimestamphere******, // * UNIX timestamp of last checkpoint block
1, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
10000.0 // * estimated number of transactions per day after checkpoint
};
by changing the gensis block, the timestamp and change the 4404988 to 1.
Rebuild the client.
Now run the client and mine some blocks.
To checkpoint the chain.To get a block hash type in the console getblockhash 10 or any block number to get the hash. To get the number of transactions and time go to appdata/roaming/litecoin/debug and look at the block number. This will show transactions and timestamp which you will need to convert to epooch.
You also may be able to comment out the second check
[code]
static MapCheckpoints mapCheckpoints =
boost::assign::map_list_of
( 0, uint256("0x*********Insert Genesis Hash Here**********"))
;
static const CCheckpointData data = {
&mapCheckpoints,
//********Inserttimestamphere******, // * UNIX timestamp of last checkpoint block
// 1, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
// 10000.0 // * estimated number of transactions per day after checkpoint
};
[/code]