I’m forking a altcoin to create my own altcoin, I already the know the basic process, however I’m getting confused with what printf spits out the merkle root. //// debug print uint256 hash = block.GetHash(); printf(“%s\n”, hash.ToString().c_str()); printf(“%s\n”, hashGenesisBlock.ToString().c_str()); printf(“%s\n”, block.hashMerkleRoot.ToString().c_str()); assert(block.hashMerkleRoot == uint256(“0x”)); //Crashes here (expected) Which line will spit out the newly createdRead more