Skip to content

Commit

Permalink
Updated mainnet reward reduction block
Browse files Browse the repository at this point in the history
  • Loading branch information
tohsnoom committed Jan 22, 2022
1 parent f5c6d9b commit fac4892
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1636,9 +1636,9 @@ int64_t GetBlockValue(int nHeight)
// Mainnet or regtest
if (nHeight == 0) {
return 139441613 * COIN;
} else if (nHeight < 2665840) {
} else if (nHeight < 2700000) {
return 36 * COIN;
} else if (nHeight >= 2665840 && nHeight < 13058321) {
} else if (nHeight >= 2700000 && nHeight < 13058321) {
return 6 * COIN;
} else if (nHeight == 13058321) {
return 3 * COIN;
Expand Down

0 comments on commit fac4892

Please sign in to comment.