Im for Q-nodes, used to like messing around with darkcoin(dash) masternodes.
You should probably start a new thread cause the original post lists wrong block explorer
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.
addnode=192.124.224.254:17012
addnode=45.33.123.22:17012
addnode=108.61.10.90:17012
addnode=139.162.128.92:17012
addnode=95.46.99.96:17012
addnode=167.160.36.126:17012
addnode=157.161.128.55:17012
addnode=192.124.224.254:17012
addnode=45.33.123.22:17012
addnode=108.61.10.90:17012
addnode=139.162.128.92:17012
addnode=95.46.99.96:17012
addnode=167.160.36.126:17012
addnode=157.161.128.55:17012
int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 17.01 * COIN;
if (nHeight == 1)
{
nSubsidy = 850500 * COIN; //first block premine less than 1% 0.8505%
}
if(nHeight >= 268840) // (2.25 min intervals in 20 days) + 256036 (block height on 10/25/15 at 10pm -- so around 11/14/2015 halving will occur
{
//change of the first halving of block reward at block 268840
nSubsidy = 8.505 * COIN;
}
// Subsidy is cut in half every 467200 blocks, which will occur approximately every 2 years
//nSubsidy >>= (nHeight / 934400); // Quatloo: 934.4k blocks ~ 4 years
nSubsidy >>= (nHeight / 467200); // Quatloo: 467.2k blocks ~ 2 years
return nSubsidy + nFees;
}