Did you encounter any errors when running it? I just downloaded a new wallet in a VM and it synced up fine.
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.
rpcuser=username
rpcpassword=password
rpcport=10000
rpcallowip=127.0.0.1
server=1
daemon=1
ERROR: CheckBlock() : hashMerkleRoot mismatch
ERROR: Aux POW merkle root incorrect
int64_t GetBlockValue(int nHeight, int64_t nFees)
{
// initial mining phase, first 1999 blocks, reward grows from 1 to 64 COIN.
// after that, reward decays by 1% (compound) every 10080 blocks (7 days) over next 3.9 million blocks
// after that point reward is 2 COIN forever after.
int64_t nSubsidy = 0;
if(nHeight<1999)
nSubsidy = (1 * COIN) << (nHeight + 1)/300;
else if(nHeight<3933199)
nSubsidy = 100 * pow(double(0.99), (nHeight-1999)/10080) * COIN;
else
nSubsidy = 2 * COIN;
return nSubsidy + nFees;
}