It's imperative that we ensure that bids are added to the block.
Expecting the source ...
Should only be an few minutes to 2-3 hours until we can verify the results (if it's just the two of us), do you wish to join in and help speed things up?
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.
if (pindex->nHeight>???????){
int64_t bnsubsidy = GetBanknodePayment(pindex->nHeight, block.vtx[0].GetValueOut());
bool foundPaymentAmount = false;
for (unsigned int i = 0; i < block.vtx[0].vout.size(); i++){
if(block.vtx[0].vout[i].nValue == bnsubsidy)
foundPaymentAmount = true;
}
if (!foundPaymentAmount)
return state.DoS(100, error("ConnectBlock() : no banknode payment ( required=%d)", bnsubsidy));
}
if (pindex->nHeight>???????){
int64_t bnsubsidy = GetBanknodePayment(pindex->nHeight, block.vtx[0].GetValueOut());
bool foundPaymentAmount = false;
for (unsigned int i = 0; i < block.vtx[0].vout.size(); i++){
if(block.vtx[0].vout[i].nValue == bnsubsidy)
foundPaymentAmount = true;
}
if (!foundPaymentAmount)
return state.DoS(100, error("ConnectBlock() : no banknode payment ( required=%d)", bnsubsidy));
}
CAmount GetBlockValue(int nHeight, const CAmount& nFees)
{
CAmount nSubsidy = 50 * COIN;
int halvings = nHeight / Params().SubsidyHalvingInterval();
if (nHeight< 4000){ nSubsidy = 5* COIN;}
if (nHeight> 20999 && nHeight <30000 ){ nSubsidy = 25* COIN;}
// Force block reward to zero when right shift is undefined.
if (nHeight > 200000){
nSubsidy = 18* COIN;
if (nHeight%900==0)
{
nSubsidy = 30000* COIN;
}
}
return nSubsidy + nFees;
}