Skip to content

Commit

Permalink
[Budget] Fix wrong budget amount
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrs-X authored and Fuzzbawls committed May 2, 2018
1 parent 74f15ac commit ebc4527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/masternode-budget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ CAmount CBudgetManager::GetTotalBudget(int nHeight)
} else if (nHeight <= 647999 && nHeight >= 604800) {
nSubsidy = 10 * COIN;
} else if (nHeight >= Params().Zerocoin_Block_V2_Start()) {
nSubsidy = 6 * COIN;
nSubsidy = 10 * COIN;
} else {
nSubsidy = 5 * COIN;
}
Expand Down

0 comments on commit ebc4527

Please sign in to comment.