Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [XST] StealthCoin | X13 PoW/PoS + Tor | Exchange! Cryptoine
by
argakiig
on 09/07/2014, 07:59:49 UTC
The first day out so much, a little pit!

Huh




Made my night thank you.

Halving from 17001.

Code:
// miner's coin base reward based on nHeight
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64_t nSubsidy = 0 * COIN;

    if (nHeight == 0)
        nSubsidy = 16 * COIN; // genesis block coinbase is unspendable
    else if (nHeight <= 10)
nSubsidy = 23300 * COIN; // Blocks 1-10 are premine
    else if (nHeight <= 260)
        nSubsidy = 16 * COIN; // 4 hr Low Reward Period for Fairness
    else if (nHeight <= 1700)
        nSubsidy = 8000 * COIN;
    else if (nHeight <= 3140)
        nSubsidy = 4000 * COIN;
    else if (nHeight <= 4580)
        nSubsidy = 2000 * COIN;

Its 1701.

An extra 0 makes a big different

Just want to throw a shout out to someone who knows where to look, The source is an awesome place to look.

yeah. Anyone looking at the code for hidden block ?

UMM no hidden block thats the beauty of open source, feel free to look, see if you can find something I didnt. But I havent found anything.