Skip to content

Commit

Permalink
edited budget
Browse files Browse the repository at this point in the history
  • Loading branch information
copicogithub1 committed Aug 21, 2018
1 parent 5a3640d commit 7566971
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/masternode-budget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -798,16 +798,16 @@ CAmount CBudgetManager::GetTotalBudget(int nHeight)
CAmount nSubsidy = 0;
if (nHeight >= 100 && nHeight < Params().PROTOCOL_SWITCH()) {
nSubsidy = 40 * COIN;
} else if (nHeight >= Params().PROTOCOL_SWITCH() && nHeight < 132000) {
} else if (nHeight >= Params().PROTOCOL_SWITCH() && nHeight < 150200) {
nSubsidy = 50 * COIN;
} else if (nHeight >= 132000 && nHeight < 172800) {
} else if (nHeight >= 150200 && nHeight < 166600) {
nSubsidy = 30 * COIN;
} else if (nHeight >= 172800 && nHeight < 259200) {
nSubsidy = 25 * COIN;
} else if (nHeight >= 259200 && nHeight < 345600) {
nSubsidy = 20 * COIN;
} else if (nHeight >= 166600 && nHeight < 196840) {
nSubsidy = 60 * COIN;
} else if (nHeight >= 196840 && nHeight < 345600) {
nSubsidy = 40 * COIN;
} else if (nHeight >= 345600 && nHeight < 1036800) {
nSubsidy = 15 * COIN;
nSubsidy = 20 * COIN;
} else if (nHeight >= 1036800 && nHeight < 1728000) {
nSubsidy = 10 * COIN;
} else if (nHeight >= 1728000) {
Expand Down

0 comments on commit 7566971

Please sign in to comment.