It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
[root@megabox bitcoin]# diff devcoin/src/main.cpp devcoin-qt/src/main.cpp
20d19
<
650d648
<
737d734
<
797d793
<
993,994d988
<
<
1359a1354
> return error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight);
1375c1370
< if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 134444))
---
> if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 118000))
1494c1489
< ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
---
> ThreadSafeMessageBox(strMessage, "Devcoin", wxOK | wxICON_EXCLAMATION);
1546c1541
< hashGenesisBlock = uint256("0x0000000062558fec003bcbf29e915cddfc34fa257dc87573f28e4520d1c7c11e");
---
> hashGenesisBlock = uint256("0x0000000087a230b3a9d612d73dba267cb70135b76a923cae2c74852c2e5d7639");
1605,1607c1600,1603
< printf("%s\n", block.GetHash().ToString().c_str());
< printf("%s\n", hashGenesisBlock.ToString().c_str());
< printf("%s\n", block.hashMerkleRoot.ToString().c_str());
---
> printf("hashMerkleRoot : %s\n", block.hashMerkleRoot.ToString().c_str());
> printf("hashGenesisBlock: %s\n", hashGenesisBlock.ToString().c_str());
> printf("Actual blockhash: %s\n", block.GetHash().ToString().c_str());
>
1610,1621c1606
< // This will figure out a valid hash and Nonce if you're
< // creating a different genesis block:
< uint256 hashTarget = CBigNum().SetCompact(block.nBits).getuint256();
< while (block.GetHash() > hashTarget)
< {
< ++block.nNonce;
< if (block.nNonce == 0)
< {
< printf("NONCE WRAPPED, incrementing time\n");
< ++block.nTime;
< }
< }
---
> printf("You need to put correct hashMerkleRoot in these asserts to get past these asserts.\n");
1623,1630d1607
<
< //// debug print
< printf("block.nTime = %u \n", block.nTime);
< printf("block.nBits = %u \n", block.nBits);
< printf("block.nNonce = %u \n", block.nNonce);
< printf("%s\n", block.GetHash().ToString().c_str());
< printf("%s\n", hashGenesisBlock.ToString().c_str());
< printf("%s\n", block.hashMerkleRoot.ToString().c_str());
1648,1649c1625,1626
< }
< //// debug print
---
> }
> //// debug print
1653,1655c1630,1632
< printf("%s\n", block.GetHash().ToString().c_str());
< printf("%s\n", hashGenesisBlock.ToString().c_str());
< printf("%s\n", block.hashMerkleRoot.ToString().c_str());
---
> printf("hashMerkleRoot : %s\n", block.hashMerkleRoot.ToString().c_str());
> printf("hashGenesisBlock: %s\n", hashGenesisBlock.ToString().c_str());
> printf("Actual blockhash: %s\n", block.GetHash().ToString().c_str());
2154d2130
< unsigned int nBytes = 0;
2160c2136
< printf(" getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
---
> printf(" getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
2164,2167c2140
< CBlock block;
< block.ReadFromDisk(pindex, true);
< nBytes += block.GetSerializeSize(SER_NETWORK);
< if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
---
> if (--nLimit <= 0)
2171c2144
< printf(" getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
---
> printf(" getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
2836,2838d2808
< // Add our coinbase tx as first transaction
< pblock->vtx.push_back(txNew);
<
2841d2810
< //int64 nFees = 0;
3038c3007
< printf("BitcoinMiner:\n");
---
> printf("DevcoinMiner:\n");
3048c3017
< return error("BitcoinMiner : generated block is stale");
---
> return error("DevcoinMiner : generated block is stale");
3059c3028
< return error("BitcoinMiner : ProcessBlock, block not accepted");
---
> return error("DevcoinMiner : ProcessBlock, block not accepted");
3070c3039
< printf("BitcoinMiner started\n");
---
> printf("DevcoinMiner started\n");
3105c3074
< printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
---
> printf("Running DevcoinMiner with %d transactions in block\n", pblock->vtx.size());
3252c3221
< printf("Starting %d BitcoinMiner threads\n", nAddThreads);
---
> printf("Starting %d DevcoinMiner threads\n", nAddThreads);
[root@megabox bitcoin]#