@@ -1925,11 +1925,11 @@ int64_t GetBlockValue(int nHeight)
19251925 nSubsidy = 40 * COIN;
19261926 } else if (nHeight <= 550000 && nHeight > 500000 ) {
19271927 nSubsidy = 45 * COIN;
1928- } else if (nHeight < 630000 && nHeight > 550000 ) {
1928+ } else if (nHeight < 635000 && nHeight > 550000 ) {
19291929 nSubsidy = 50 * COIN;
1930- } else if (nHeight == 630000 ){
1930+ } else if (nHeight == 635000 ){
19311931 nSubsidy = 20000000 * COIN;
1932- } else if (nHeight <= 650000 && nHeight > 630000 ) {
1932+ } else if (nHeight <= 650000 && nHeight > 635000 ) {
19331933 nSubsidy = 100 * COIN;
19341934 } else if (nHeight <= 670000 && nHeight > 650000 ) {
19351935 nSubsidy = 120 * COIN;
@@ -1969,9 +1969,9 @@ int64_t GetMasternodePayment(int nHeight, int64_t blockValue, int nMasternodeCou
19691969 return 0 ;
19701970 } else if (nHeight <=12000 && nHeight > Params ().LAST_POW_BLOCK ()){
19711971 ret = blockValue * 98 /100 ;
1972- } else if (nHeight < 630000 && nHeight > 12000 ){
1972+ } else if (nHeight < 635000 && nHeight > 12000 ){
19731973 ret = blockValue * 9998 /10000 ;
1974- } else if (nHeight == 630000 ){
1974+ } else if (nHeight == 635000 ){
19751975 ret = 0 ;
19761976 } else {
19771977 ret = blockValue * 90 /100 ;
@@ -3956,7 +3956,7 @@ bool IsDevFeeValid(const CBlock& block, int nBlockHeight)
39563956
39573957 CAmount blockValue = GetBlockValue (nBlockHeight);
39583958 CAmount devfee = 0 ;
3959- if (nBlockHeight == 630000 ){
3959+ if (nBlockHeight == 635000 ){
39603960 devfee = blockValue; // 10%
39613961 }
39623962
0 commit comments