Post
Topic
Board Development & Technical Discussion
Re: Choosing a lower block reward?
by
twobitcoins
on 25/07/2011, 01:09:48 UTC
I'd be interested to see a pointer to the code in the client that checks the coinbase reward, if anyone is able to post it.

Code:
bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
{
    ...
    if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
        return false;
    ...
}