cloning bitcoin MAX_MONEY not working

0

I have changed the amount of coins to be mined, to be 1000 but looks did not work, I have already 8000 coins mined, can someone explain why it is not working?

main.h

static const int64 MAX_MONEY = 1000 * COIN;  //coin limit

static const int COINBASE_MATURITY = 2;

return dPriority > COIN * 1000 / 250; //after 10 blocks the dificulty will reajust

raduken

Posted 2018-03-31T13:09:30.880

Reputation: 105

Question was closed 2018-04-03T20:02:22.890

Answers

1

static const int64 MAX_MONEY = 1000 * COIN;  //coin limit

Maximum amount (in satoshi) allowed anywhere (in the whole network). COIN is equal to 10^8 This is NOT the total amount of coins which your software is going to produce.

static const int COINBASE_MATURITY = 2;

Coinbase transactions cannot be spent before this number of confirms (i.e. 2)

user51260

Posted 2018-03-31T13:09:30.880

Reputation:

thanks a lot bro, but I have no money :) I am learning this , to try get a better life for me, family and my daughter , I just lost my job. could tell me where I can insert the max coin limit? because as I see it is there.raduken 2018-03-31T16:36:46.570

Please don't use answers as job ads.Pieter Wuille 2018-04-03T16:46:25.520