Iam cloning a coin (basic script) so i can explore crypto programming need a little help.
I want to code 100000coin
premine 10000 coin and then 100 coins per block. how to do this
{
int64 nSubsidy = 100 * COIN;
if(nHeight == 1)
{
nSubsidy = 10000 * COIN;
}
is this correct Huh?