Skip to content

Commit

Permalink
adjust budget checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Liquid369 committed Apr 1, 2023
1 parent 14b2b77 commit d760958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/budget/budgetmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -854,8 +854,8 @@ std::string CBudgetManager::GetRequiredPaymentsString(int nBlockHeight)
CAmount CBudgetManager::GetTotalBudget(int nHeight)
{
//Static budget
if (nHeight <= 335000) {
return 55000 * COIN;
if (nHeight <= 1000000) {
return 85000 * COIN;
} else {
return 50000 * COIN;
}
Expand Down

0 comments on commit d760958

Please sign in to comment.