Did you manage to figure out why the Windows version just crashed immediately on startup? Was there anything registered in the Windows Error Log that might indicate why it was crashing?
Yes, I've figured it out what was the fault weeks now. I just didn't reply to your
last post. You were right, it was the
checkpointData.
Instead of:
checkpointData = {
{
}
};
I should do it:
checkpointData = {
{
{ 0, uint256S("0x0")}
}
};
So now, bitcoin-qt opens without any errors. I've several queries right now, though. First of all, I connect with nodes. That shouldn't happen. I've deleted all
“vSeeds.emplace_back” lines. There are no IP addresses on my source code. I've also changed the message signature of mainnet to:
pchMessageStart[0] = 0xf0;
pchMessageStart[1] = 0xb0;
pchMessageStart[2] = 0xb0;
pchMessageStart[3] = 0xd0;
Although, Bitcoin Core sends information somewhere.
Second question. Why am I considered as asynchronized? I haven't changed the satoshi's genesis block and in order to work I've set
nMaxTipAge to a large value, so it can mine without thinking that the block is way too old.
(bad grammar)validation.cpp:int64_t nMaxTipAge = DEFAULT_MAX_TIP_AGE * 10000;
Third question. Why I can't mine? Difficulty is 1. Does it have to do with the previous question that I'm not "synchronized"?
And I cloned P2Pool and setup my own mining pool..
What's the point of cloning one if it's a small project? People can mine from their pc via Core. It must be hard, but according to your posts, you are an experienced miner so it wouldn't be that bad.